$(document).ready(function(){
	
	
	// POPUP DELAY
	// show close button
	$('#popup-delay #popup-close').show();
	
	// fade in popup
	$('#popup-delay').hide();
	$('#popup-delay').fadeIn(500);
	
	// close button
	$('#popup-close').click( function() {
		$('#popup-delay').hide();
	})
	
	
	
	//Product Listing Rollover
	$(".product-row li").mouseover(function () {
      //$(this).css("background","#EDEDED");
	  $(this).css("background","#F8E6E6");
    });
	
	$(".product-row li").mouseout(function () {
      $(this).css("background","url(images/bg_listing.gif) left bottom repeat-x white");
    });
	
	//Product Navigation
	jQuery('#structure-menu').Accordion({
		active: '.catpselected',
		header: '.header',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	
	jQuery('#structure-menu').Accordion({
		active: '.catselected',
		header: '.subheader',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	
	//Product Details Jumpmenu
	$('#product-selection').change(function () {      
        //$('#meu_box').load($(this).val());    
		document.location.href = $(this).val();
    });
	
	$("#order-history tbody tr").hover(
      function () {
		$(this).css("background","#F5F5F5");
      }, 
      function () {
		$(this).css("background","#FCFCFC");
      }
    );
	
	//Optional Giftbox
	$(".agiftbox").click(function () {
      $("#giftbox-content").slideToggle("slow");
    });
	
	
}
);
