
$(document).ready(function() {

	$("#jsddm li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : 'url(../images/topbutton_bg.gif) no-repeat'}); //Add background color and image on hovered list item
		$(this).find("ul").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'url(../images/topbutton_bg.gif) no-repeat'}); //Ditch the background
		$(this).find("ul").hide(); //Hide the subnav
	});

});
