$(document).ready(function() {
	if($('#maximage').length!=0) backgroundImage();	
	$('.divider:last-child').css('margin-top', '-20px');
	
	$('#hdr header h1 a').hover(function(){
		$(this).fadeTo(100,.5);
	}, function(){
		$(this).fadeTo(100,1);
	});
});

function backgroundImage(){
	$('#maximage').maxImage({
			isBackground: true,
			overflow: 'auto'
	 });
}

