    jQuery(function () {
        if (jQuery.browser.msie && jQuery.browser.version < 7) return;

        jQuery('div.navigation li')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />')/*.each(function () {
                    var jQueryspan = jQuery('> span.hover', this).css('opacity', 0);
                    jQuery(this).hover(function () {
                        // on hover
                        jQueryspan.stop().fadeTo(500, 1);
                    }, function () {
                        // off hover
                        jQueryspan.stop().fadeTo(500, 0);
                    });
                })*/;
                
	    jQuery('div.navigation li a').each(function()
		    {
		   	var jqs = jQuery('> span.hover', this);
		    	if(window.location.toString().indexOf(this.href.substring(this.href.lastIndexOf('/') + 1, this.href.lastIndexOf('?'))) == -1 && this.href.target != "_blank")
		    		jqs.css('opacity', 0).parent().hover(function () { jqs.stop().fadeTo(500, 1); }, function () { jqs.stop().fadeTo(500, 0); });
			else
				jqs.css('opacity', 1);
		    });
    });
	
	    /*jQuery(function () {
        if (jQuery.browser.msie && jQuery.browser.version < 7) return;
        
        jQuery('#navigationBottom li')
            .removeClass('highlight')
            .find('a')
            .append('<span class="hover" />')/*.each(function () {
                    var jQueryspan = jQuery('> span.hover', this).css('opacity', 0);
                    jQuery(this).hover(function () {
                        // on hover
                        jQueryspan.stop().fadeTo(500, 1);
                    }, function () {
                        // off hover
                        jQueryspan.stop().fadeTo(500, 0);
                    });
                });
                
	    jQuery('#navigationBottom li a').each(function()
		    {
		    	var jqs = jQuery('> span.hover', this);
			alert(window.location.toString().indexOf(this.href.substring(this.href.lastIndexOf('/') + 1, this.href.lastIndexOf('?'))))
			if(window.location.toString().indexOf(this.href.substring(this.href.lastIndexOf('/') + 1, this.href.lastIndexOf('?'))) == -1)
				jqs.css('opacity', 0).parent().hover(function() { jqs.stop().fadeTo(500, 1); }, function () { jqs.stop().fadeTo(500, 0); });
			else
				jqs.css('opacity', 1);
		    });
    });*/
