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

			$('#leftnav_frame').css('top', $(this).children('ul:first').offset().top + 'px');
			$('#leftnav_frame').css('left', $(this).children('ul:first').offset().left + 'px');
			$('#leftnav_frame').width($(this).children('ul:first').width());
			$('#leftnav_frame').height($(this).children('ul:first').height());
			$('#leftnav_frame').show();
			
			
			//$(this).children('ul:first').fadeIn(500);
			
		},
		function()	{
			$(this).children('ul:first').hide();
			$(this).parent().parent().removeClass("hover");

			$('#leftnav_frame').hide();
		}		
	);

	
 });

