$(document).ready(function(){
	$('#immProd li a').hover(function(){
		$(this).css('opacity',0.5);
	},function(){
		$(this).css('opacity',1);
	});
	$('a.ttips').Tooltip({
		extraClass: "fancy",
		fixPNG: true,
		showURL: false,
		showBody: '-'
	});
});

