$(document).ready(function(){
	//$(document).pngFix();
	$('#nav .search .input-text').autofill({value: 'Brand, Type'});
	
	$('#block-front-banner').tabs({ selected: 0, fx:{opacity: "toggle"}}).tabs("rotate", 6000, true);
	
	$('.link-sort').bind("click", function(e){
		e.preventDefault();
		$('.sort-options').slideToggle('normal', function() {
      $('.sort-options').hover(
        function() { $(this).stop().slideDown('normal'); },
        function() { $(this).stop().slideUp('normal').unbind('mouseenter mouseleave'); }
      )
		});
		$('.link-sort').toggleClass("active");	
	});
	
	$('.link-filter').bind("click", function(e){
		e.preventDefault();
		$('.filter-options').slideToggle('normal');
		$('.link-filter').toggleClass("active");	
	});
	
	function addMega(){ $(this).addClass("active"); }
	function removeMega(){ $(this).removeClass("active"); }
	var megaConfig = {
		interval: 100,
		sensitivity: 1,
		over: addMega,
		timeout: 100,
		out: removeMega
	};
	$("li.mega").hoverIntent(megaConfig);	
});
