$(document).ready(function(){
	// Animate the waves
	if (! jQuery.browser.msie || (parseInt(jQuery.browser.version) >= 7) ) {
		var move = function(){
			$(this).animate({backgroundPosition: '+=100px'}, 3000, 'easeInOutQuad');
			$(this).queue(move);$(this).dequeue();
		};
		$('#hdw').queue(move);
	}

	// Animate the slideshow
	$('#slideshow ul').innerfade({
		animationtype:  'fade',
		speed:          1000,
		timeout:        4000,
		type:           'random'
	});
});