	$(document).ready(function($){
		var scrollTimer  = setInterval(ScrollNext, 7000);
		var scrollItemsL = $('div#footer-gallery div.scrollable div.items');
				
		function ScrollNext()
		{
			thisScrollElement = $('div#footer-gallery div.scrollable div.items').children('a').eq(0);
			
			$('div#footer-gallery div.scrollable div.items').animate({'left' : thisScrollElement.width() * -1}, 1500, function()
			{
				$('div#footer-gallery div.scrollable div.items').append($('div#footer-gallery div.scrollable div.items').children('a').eq(0));
				$('div#footer-gallery div.scrollable div.items').animate({'left' : 0}, 0, "linear");
			});
		}
		
		
		$("div#player").click(function() {
			window.location = $("div.movie_cont h4 a").attr("href");
		});
		
		/*
		$("#scrollable img").lazyload({         
			 container: $("#scrollable")
		});*/
		
		
	});
	
	
