// JavaScript Document

//jQuery
jQuery(function( $ ){
			
		/* Quick links*/
		//$("li.mainlink").children(".list").css('display', 'none');
		
		$("li.mainlink").hover(function(){
			$(this).children(".list").slideDown("fast");
			},
			 function()
			 {
			 $(this).children(".list").slideUp("fast");
			 }
	 );


	
});	


			
	