﻿$(document).ready(function() {
	
$(".hoveritem").hover(function() { //Hover over event on list item
	$(this).css({ 'background' : '#1376c9'}); //Add background color on hovered list item
	$(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	$(this).css({ 'background' : 'none'}); //Ditch the background
	$(this).find("span").hide(); //Hide the subnav
});
	
});

<!--
    function AddFavorite() 
    {
        //Gecko
        if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function')) 
        {   
            window.sidebar.addPanel('BDSM Plaza.com - BDSM Movies, daily free BDSM movies!', 'http://www.bdsmplaza.com/', '');
        }
        //IE4+
        else if (typeof window.external == 'object') 
        {
            window.external.AddFavorite('http://www.bdsmplaza.com/', 'BDSM Plaza.com - BDSM Movies, daily free BDSM movies!');
        }
        //Opera7+
        else if (window.opera && document.createElement)
        {
            var a = document.createElement('A');
            if (!a) return false; //IF Opera 6
            a.setAttribute('rel', 'sidebar');
            a.setAttribute('href', 'http://www.bdsmplaza.com/');
            a.setAttribute('title', 'BDSM Movies, daily free BDSM movies!');
            a.click();
        }
    }
// -->

