$(function(){
	$(".slides").cycle();
	
	$("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();
	
	$(".submit").click(function(){
		$(this).parents("form").submit();
		return false;
	});
});