// FIX IE

 $(document).ready(function(){
   
   $("ul.featured-ul li:last-child").addClass("last");


  });


$(document).ready(function(){	
			$("#slider").easySlider({
				auto: true, 
				continuous: true,
				numeric: true
			});
		});	

$(document).ready(function() {


	//On mouse over those thumbnail
	$('.mag-thumb').hover(function() {
		
		//Display the caption
		$(this).find('div.caption').stop(false,true).fadeIn(200);
	},
	function() {
		
		//Hide the caption
		$(this).find('div.caption').stop(false,true).fadeOut(200);
	});

});

