/* JQUERY CUSTOM COMMANDS */
$(document).ready(function(){ /* start javascript when document is loaded */

	/* TEMP SHOPMENU ACTIVE LI */
	$('#shopMenu a').click(function() {
		$(this).parents("#shopMenu").find("li").removeClass("active").addClass("inactive"); // set all items to inactive
		$(this).parents("li").removeClass("inactive"); // remove inactive from current item
		$(this).parents("li").addClass("active"); // set current item to active
		return false;
	});
	
	/* TEMP STYLEMENU ACTIVE LI */
	$('#styleMenu a').click(function() {
		$(this).parents('#styleMenu').find('li').removeClass("active");
		$(this).parent('li').addClass("active");
		return false;
	});
	
	/* LOGIN BOX */
	$('#mijnWoonZoo').hover(function() { // Hover box show/hide
	    $("#loginBox").show();
	}, function() {
	    $("#loginBox").hide();
	});
	$('#loginBox .close, #loginBox .title a').click(function() { // Close box
		$('#loginBox').hide();
		return false;
	});
	
	/* DETAIL */
	$('.detailImage .thumb a').click(function() {
		$(this).parents(".thumbs").find(".thumb").removeClass("active"); // remove all actives
		$(this).parent().addClass("active"); // set current item to active
		return false;
	});
	
});