//MovingBackground Hokey
//The MovingBackground code is the copyright Minute Designs Ltd, any reproduction will resort in legal action
//Credits to Alexander Farkas for making the jquery.backgroundposition JS making this possible.

$(function()
		   
{function MovingBackground()

	{
		
	var start = 0;
	
	var end = 4000;

	$('body').css({
	backgroundPosition: '25% -' + start + 'px'
	});

	$('body').animate({
	backgroundPosition:'(25% -' + end + 'px)'},300000,"linear",
	
	function () {MovingBackground();});
	
	}
   
	MovingBackground();})

//End the sexy moving background