﻿
/*

	Description : Drop Down Menu Script
	Author: Amir Jafari
	
 ------------------------------------------------------------------------------ */

$(function(){
	$('ul.main li').children('ul').hide();
	$('ul.main li').hover(function () {
		//$(this).children('ul').css({display: 'block'});
		$(this).children('ul').show('normal');
	}, 
	function () {
		//$(this).children('ul').css({display: 'none'});
		$(this).children('ul').hide('normal');
	});
});