﻿$(document).ready(function (){

	$("#mainmenu li.parent").hover(function(){
		$(this).find('ul').show();
	}, 
	function(){
		$(this).find('ul').hide();
	});


});
