<!--
var timer;
$(document).ready(function() {
    $('.active').parent().show();
    $('.active').parent().parent().show();
    $('.active').parent().parent().parent().show();
	
    $('#categoryMenu ul ul').prev().click(function(){
		$(this).parent().siblings().children('.extended').toggleClass("extended");
		$(this).parent().siblings().children('ul:visible').slideUp('fast');
		$(this).next().slideToggle('fast');
        $(this).toggleClass("extended");
		return false;
	});	OnLoad();

}); 

function updateProducts(){
  //$('#divSpecial').fadeTo("slow",0.5).animate({opacity: 1}, 1000);
  $('#divSpecial').hide();
//  $('#divSpecial').slideDown("slow");
  $('#divSpecial').fadeIn("slow");
  $('#divSpecial').load(_siteUrl + 'special-product.aspx');
  clearTimeout(timer);
  timer = setTimeout(eval("updateProducts"), 3000);
}
function OnLoad(event){
    
     clearTimeout(timer);
     timer = setTimeout(eval("updateProducts"), "0");
}
//-->