// JQuery Document

$(document).ready(function() {
	var	linkhover = $('.link');	
	
	$('#logo').hide();
	setTimeout(function(){ $('#logo').fadeIn(); }, 500);
	
	linkhover.hover(function() {
		$.fn.soundPlay({url: 'http://test.ingsdesign.com/wp-content/themes/dfame_01/audio/mouseover.mp3', command:'play'});
	}, function() {
		$.fn.soundPlay({command:'stop'});
	});
	
	linkhover.click(function() {
		$.fn.soundPlay({url: 'http://test.ingsdesign.com/wp-content/themes/dfame_01/audio/mouseclick.mp3', command:'play'});
	}, function() {
		$.fn.soundPlay({command:'stop'});
	});
});

