soundManager.url = 'swf';

soundManager.onready(function() {
	var seaSound = soundManager.createSound({
		id: 'seeSound',
		url: 'sounds/sea.mp3',
		autoLoad: true,
		autoPlay: true,
		loops: 1 // it's seems that soundManager has problem with more than one loop
	});

	seaSound.play();
});

$(window).load(function() {
	$('#slider').nivoSlider();
});
