jQuery(document).ready(function(){ 
    jQuery(document).pngFix();
});

function hideBouttons(){
		//console.log("Player is playing");
		jQuery(".menu").hide();
		jQuery("#flashContent").css('filter','alpha(opacity=100)');
		
	}
	
function showBouttons(){
		//console.log("Player is stoping");
		jQuery(".menu").show();
		jQuery("#flashContent").css('filter','alpha(opacity=50)');
	}	
