/**
 * @author mario
 */
	$(document).ready(function() {
		
		$(".section").hover(
	
			function() {
			
				nId=$(this).attr("rel");
				$("#preload"+nId).show();
			
			},
		
			function() {
				
				nId=$(this).attr("rel");
				$("#preload"+nId).hide();
				
			}
	
		);
	
	});

	function openplayer()
	{
		wmsgwin = window.open('player.php','player',"dependent=yes,location=no,menubar=no,resizable=no,scrollbars=yes,status=no, toolbar=no,width=325, height=122");
	}