// JavaScript Document
$(document).ready(function()
{
   $('ul li ul li').mouseover(function()
								{
									$('#selectid').css{ 
									background-image:"../images/navbg.jpg";
									background-repeat:"repeat-x";
									}
								})
	$('ul li ul li').mouseout(function()
								{
									$('#selectid').css('background-image',"#fff");
								})
	
})
