jQuery(function($){	

	//Highlight current page
	try{
		if(currentPage!=null)
		$("#navigation > li").eq(currentPage-1).addClass("active");
	}
	catch(e){
	}

	//Dropdown 
	$("#navigation li").hover(function(){
		var $dropdown = $(this).find(">ul");
		$dropdown.height("auto")
		$dropdown.clearQueue().fadeIn(400).parent().addClass("hovered");
	},function(){
		var $dropdown = $(this).find(">ul");
		$dropdown.delay(200).fadeOut(0, function(){$dropdown.parent().removeClass("hovered")});
	});
	
	$(".list-cake a").lightBox();
	
	try{
		$(".list-cake li").each(function(){
			$(this).find("a").append('<span>'+(countStart++)+'</span>');
		});
	}
	catch(e){
	}

});


(function($){
	
	jQuery.fn.listCakes = function(){
		
	};
	
	
})(jQuery);


