$(document).ready(function(){
	if (jQuery.browser.msie && parseInt(jQuery.browser.version) <= 6) {
		$('ul.leftnav li').hover(
			function()	{
				$(this).addClass("hover");
			},
			function()	{
				$(this).removeClass("hover");
			}		
		);
	}
		
	$('div.leftnav_button ul li').hover(
		function()	{
			//$(this).children('ul:first').fadeIn(500);
			$(this).children('ul:first').show();
			$(this).parent().parent().addClass("hover");
			
		},
		function()	{
			$(this).children('ul:first').hide();
			$(this).parent().parent().removeClass("hover");
		}		
	);

	
 });


