$(document).ready(function(){
$(".thumb-container").hover(function(){
				if ($.browser.msie) {
					$(this).children("img.thumb-bg").fadeTo("normal", 0);
					$(this).children("div.thumb-type").fadeTo("normal", 1.0);

				 } else {
					$(this).children("img.thumb-bg").fadeTo("normal", 0); // This should set the opacity to 0% on hover
					$(this).children("div.thumb-type").fadeTo("normal", 1.0);

				}
			},function(){
				if ($.browser.msie) {
					$(this).children("img.thumb-bg").fadeTo("normal", 1.0);
					$(this).children("div.thumb-type").fadeTo("normal", 0);

				 } else {
					$(this).children("img.thumb-bg").fadeTo("normal", 1.0); // This should set the opacity back to 100% on mouseout
					$(this).children("div.thumb-type").fadeTo("normal", 0);

				}
		});
});
