$(document).ready(function() {
	// stretch background of small pages (we don't use body because we want to keep it free from bg colour so spaw in admin doesn't look like shit)
	function resizeViewport() {
		if ($('#background').height() < $(window).height()) {
			$('#background').height($(window).height())
		}
	}
	
	resizeViewport();
	
	// hook on window change
	$(window).resize(function() {
		resizeViewport();
	});
	
	// google map
	if ($('#google-map').length > 0) {
		load();
	}
	/*
	// home page logo fading
	$('#logo').fader({
		'displayDuration': '500',
		'itemTag': 'img',
		'loop': false,
		'onComplete': function() {
			// hide fading logos to reveal page default logo
			$('#logo span.items').fadeOut('slow');
		}
	});*/
	// home page testimonial fading
	$('div.testimonials .scroll-vertical').fader({
		'displayDuration': '12000'
	});
	// home page accreditations fading
	$('div.accreditations .scroll-vertical').fader({
		'displayDuration': '6000'
	});
	
	// navigation crazyness
	$('#random-image').css({'padding-top': function() {
		return $('#header div.lower li ul').innerHeight();
	}});
	
	// PNG fix
	if ($.browser.msie && $.browser.version < 7) {
		jQuery.ifixpng(url + 'images/blank.gif');
		jQuery('img[src$=.png], .bg-png').ifixpng();
	}
});