google.load("webfont", "1.0.24");
google.load("jquery", "1.7.1");

function initialize(){
//Call Google webfonts
	WebFont.load({
		google: {
			families: ['PT Sans', 'Molengo', 'OFL Sorts Mill Goudy TT', 'Inconsolata', 'Just Me Again Down Here', 'Arvo']
	}});

//jQuery div button
	$(document).ready(function(){
		$('div.button').mouseover(function(){
			$(this).toggleClass('hover');
			$(this).find('a:first').toggleClass('hover');
			window.status=$(this).find('a:first').attr('href');
		})
		.mouseout(function(){
			$(this).removeClass('hover');
			$(this).find('a:first').removeClass('hover');
			window.status='';
		});
		$('div.button').click(function(){
			window.location=$(this).find('a:first').attr('href');
			return false;});
	});
}

google.setOnLoadCallback(initialize);
