﻿$(document).ready(function() {
	
$("ul#hlist li").hover(function() { 
	$jq = jQuery.noConflict();

	$jq(this).css({ 'background' : ' url(../images/nav/topnav_active.gif) repeat-x'}); 
	$jq(this).find("span").show(); 
} , function() { 
	$jq = jQuery.noConflict();
	$jq(this).css({ 'background' : 'none'}); 
	$jq(this).find("span").hide();
});
	
});



