sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		} 
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

$(document).ready(function(){
	
		if ($('#show_second_level_filter').val() != "")
		$('#filtersub_' + $('#show_second_level_filter').val()).show();
		
		$('#category1').change(function() {
			
			$('.filter_sub').hide();
			$('.filter_sub').val("");
			$('#filtersub_'+$(this).val()).fadeIn();

		});
	

		$('#promo_box').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'random',
				containerheight: '312px'
			});

	
	if ($('.fancy').length > 0)
	$('.fancy').fancybox({ overlayOpacity: '0.50', overlayColor: '#000000'});
	
});

