$(document).ready(function() {
	
   function SetData() {
	}
  	setInterval(SetData,60);
	$("#slider").jCarouselLite({
				  circular: true,
				  visible: 5
	});
	
	$('#slider img').hover(
						   function(){
							   $(this).stop().animate(
								 {opacity:'0.4',height:'120%', width:'120%', marginTop:'-10%', marginLeft:'-10%'},400)},
							     function(){
									 $(this).stop().animate({opacity:'1',height:'100%', width:'100%', marginTop:'0%', marginLeft:'0%'},400)});
	
});
