$(
	function () {
		$( "#left" ).imageScroller( {loading:'Wait please...'} );
		
		$( "#right" ).imageScroller( {speed:'4000', direction:'right'} );
		
		$( "#top" ).imageScroller( {direction:'top'} );

		$( "#bottom" ).imageScroller( {speed:'3500', direction:'bottom'} );
	}
)

$(document).ready(function() {
 
// initialize scrollable together with the autoscroll plugin
var root = $("#scroller").scrollable({circular: true,speed:100}).autoscroll({ steps:1,autoplay: true });
 
// provide scrollable API for the action buttons
window.api = root.data("scrollable");
 
	
});


		$(function() {
			//$('ul.hover_block li').hover(function(){
			//	$(this).find('img').animate({top:'182px'},{queue:false,duration:500});
			//}, function(){
			//	$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
			//});

			$('ul.hover_block2 li').hover(function(){
				$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({left:'-300px'},{queue:false,duration:500});
			});
		//});
			$('ul.hover_block li').hover(function(){
				$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
			}, function(){
				$(this).find('img').animate({left:'-420px'},{queue:false,duration:500});
			});
		});	
