$(document).ready(function() { 

//$('#report_form').click(function() { $('#report_form_box').slideDown("slow"); return false;});	


$("#report_form").click(function() {    $("#report_form_box").slideToggle("slow"); $("input#frm_email").focus();  return false; });

$("#leftnav ul ul").hide();

$('#leftnav ul li').hover(function() {
						 var id= $(this).attr('class');
						 var sub = id.replace("dd", "sub");

										 
					$("."+sub).css({  marginLeft: '0px' });
					$("."+sub).show();
					$("."+id).css("background", "url('images/menu-sprite.jpg') 0px -90px repeat-x");	
					$("."+sub).animate({  marginLeft: '225px' });
					
								 
						 
						 
						 	},
							
							function() {
						 var id= $(this).attr('class');
						 var sub = id.replace("dd", "sub");
						//$(this).removeClass('pretty-hover');
						// $("#leftnav.parent").css("background", "url('../images/menu-sprite.jpg') 0px -190px repeat-x")
						
						//$("."+sub).animate({  marginLeft: '240px' });
						//$("."+sub).animate({  marginLeft: '0px' });
						$("."+sub).hide();
						$("."+id).css("background", "url('images/menu-sprite.jpg') 0px -190px repeat-x")
					}
							
							);


 });
