$(document).ready(function() {
 
	Cufon.replace('h2', { color: '#C00'	});
	Cufon.replace('h4', { color: '#01019c' });
	Cufon.replace('h6', { color: '#000' });

$(document).ready(function(){


	$('#menu-top li a').mouseenter(playSoundMenu);
	function playSoundMenu () {
		var audioFile = 'http://79.170.44.86/musicconcrete.co.uk/working/wp-content/themes/music/sounds/warmsinglebeep.aif';
		var embedCode = '<embed id="embed_player" hidden="true" width="1px" height="1px" autostart="true" src="' + audioFile + '" >';
	   $( '#audio' ).html( embedCode );
	}
	
	$('.hoverSound').mouseenter(playSound);
	function playSound () {
		var audioFile = $( this ).attr( 'rel' );
		var embedCode = '<embed id="embed_player" hidden="true" autostart="true" width="1px" height="1px" src="' + audioFile + '">';
	   $( '#audio' ).html( embedCode );
	}


});



});



