$(document).ready(function() {
	var day=['SUN','MON','TUE','WED','THU','FRI','SAT'],
	   month=['January','February','March','April','May','June','July','August','September','October','Novermber','December'];
   SetData();
   function SetData() {
	   var now = new Date();
	   $('#date').html(day[now.getDay()]+', ');
	   $('#date').append(' '+month[now.getMonth()]+' ');
	   $('#date').append(now.getDate()+', ');
	   $('#date').append(now.getFullYear()+' ');
	   hour=now.getHours();
	   minutes=now.getMinutes();
	   if (minutes<10) {minutes='0'+minutes};
	   $('#date').append(hour+':'+minutes);
	}
  	setInterval(SetData,60);
	$("#slider").jCarouselLite({
				  btnNext: ".next",
				  btnPrev: ".prev",
				  circular: true,
				  visible: 5
	});
	
	$('#slider img').hover(function(){$(this).stop().animate({opacity:'0.6',height:'120%', width:'120%', marginTop:'-10%', marginLeft:'-10%'},400)},function(){$(this).stop().animate({opacity:'1',height:'100%', width:'100%', marginTop:'0%', marginLeft:'0%'},400)});
	
});
