$(document).ready(
	function()
	{
		$('.show_on_hover_img').click(
			function()
			{
				var effect = 'blind';
				jQuery.each(jQuery.browser, function(i, val) {
					if (i == "msie" && val == true) effect = '';
				});
				$(this).next().toggle(effect);
			}
		);
	}
);