jQuery(document).ready(function() {
	
	jQuery("#nav-one li").hover(
		function(){ jQuery("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
	
    if (document.all) {
    		jQuery("#nav-one li").hoverClass ("sfHover");
    }
});

jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
		jQuery(this).hover( 
			function() { jQuery(this).addClass(c);  },
			function() { jQuery(this).removeClass(c); }
		);
	});
};	  


/* Left links js */

function go_ll(p_ll) {
		window.location = 'index.php?p=72&ctgx=' + p_ll;
}

function go_llm(p_ll) {
		window.location = 'index.php?p=' + p_ll;
}

function go_lls(p_lls,n_ll) {
		window.location = 'index.php?p=' + p_lls + '&n=' + n_ll;
}