$(document).ready(function() { 
	 jQuery("ul#navMenu li:has(ul)").hover(
		function () 
		{
			jQuery(this).find("ul.subnav:hidden").show();
		},
		function () 
		{
			jQuery(this).find("ul.subnav").slideUp('fast');
		}
		);
		jQuery("ul#navMenu li a.on").each(function(){
			jQuery(this).prev().find("a").css("backgroundColor", "none");
		});
		
	//Hover functionality of Images
	$('.rolloverbtn').hover(function() {
        $(this).attr('src', $(this).attr('src').toString().replace(".gif", "_h.gif"));
    }).mouseout(function() {
		$(this).attr('src', $(this).attr('src').toString().replace("_h.gif", ".gif"));
	});
		
});


/*$(document).ready(function() { 
	$('.rolloverbtn').hover(function() {
        $(this).attr('src', $(this).attr('src').toString().replace(".gif", "_h.gif"));
    }).mouseout(function() {
		$(this).attr('src', $(this).attr('src').toString().replace("_h.gif", ".gif"));
	});
});*/
