$(function(){
	$(".slides").cycle();
	
	
	var currentMenu = $(".buttons").attr("hl");
	if(currentMenu)
		$(".buttons ."+currentMenu).addClass("current"+currentMenu);
	
	//$("ul.sf-menu").superfish();
	
	$("a.comingSoon").click(function(event){
		alert("Online store Coming soon");
		event.preventDefault();
	});
	
	$("ul.nav a").click(function(event){
		$(this).next("ul").each(function(){
			$(this).toggle();
			 event.preventDefault();
		});
	});
	
	$("ul.nav a.hl").parents("ul").show();
});
