$(document).ready(function() {
	var audioElement = document.createElement('audio');
	audioElement.setAttribute('src', 'but-sound3.wav');
	audioElement.load()
	audioElement.addEventListener("load", function() { 
		audioElement.play(); 
		$(".duration span").html(audioElement.duration);
		$(".filename span").html(audioElement.src);
	}, true);



	
	$('.button-color-Special').mouseenter(function() {
		audioElement.play();
		
	});$('.button-color-works').mouseenter(function() {
		audioElement.play();
		
	});$('.button-color-profile').mouseenter(function() {
		audioElement.play();
		
	});$('.button-color-Blogs').mouseenter(function() {
		audioElement.play();
		
	});$('.button-color-Home').mouseenter(function() {
		audioElement.play();


		
	});		
});


