// on DOM load
$(document).ready(function()
{
	$('#menu ul li.submenu ul').css({
		display: "none",
		left: "0px"
	});
	
	$('#menu ul li.submenu').hover(function() {
		$(this)
			.find('ul')
			.stop(true, true)
			.fadeIn('fast');
	}, function() {
		$(this)
			.find('ul')
			.stop(true, true)
			.fadeOut('fast');
	});
	
	$(".detail-container").scrollable({circular: true}).navigator();
});
