$(document).ready(function () {
	var href_parts = window.location.href.split('#')[0].split('/');
	var page = '';
	$("#nav a").each(function () {
		page = $(this).attr('href');
		if(page == "index.php" || page == "/" || page == "./") {
			page = "";
		}
		
		if(page == window.location.href || page == href_parts[href_parts.length - 1]) {
			$(this).addClass('on');
		}
	});
	
	$("#nav a").click(function () {
		if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
			return;	
		}
		else {
			var url = $(this).attr('href');
			bottle_open = soundManager.createSound({
				id: 'open',
				url: 'sounds/bottle_open.mp3',
				onfinish: function () {
					window.location = url;
				}
			});
			bottle_open.play();
			return false;
		}
	});
});