$(document).ready(function(){
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1) // capture x.x portion and store as a number
		if (ieversion<8)
		{
			
		}
		else
		{
			$(".hover").append("<em></em>");
		
			$(".hover").hover(function() {							   
				$(this).find("em").animate({opacity: "show", top: "-95"}, "slow");
				var hoverText = $(this).attr("title");
				$(this).find("em").text(hoverText);
			}, function() {
				$(this).find("em").animate({opacity: "hide", top: "-55"}, "fast");
			});
		}
	}


$(".hover img").hover(function() {
	$(this).stop().animate({marginBottom : "-4px"}, "fast");
},function() {
	$(this).stop().animate({marginBottom : "0px"},"fast");
});

});

