$(document).ready(function(){

		$('.show').bind('mouseover',function(){
			showPopup($(this).attr('id'));
		});


		$('.show').bind('mouseout',function(){
			var mid = $(this).attr('id');
			$('#s'+mid).hide();
		});

	});




function showPopup(el){


	$('.popup').hide();

	$('#s'+el).show();

	$('#s'+el).mouseover(function(){ $(this).show(); }).mouseleave(function(){ $(this).fadeOut('slow'); }).mouseover(function(){ $(this).show(); });

}

