
/*===========================================================*/
/*=====		JQUERY HOVER EFFECT WITH ANIMATION MENU 	=====*/
/*=====		CREATED DATE -:- 06MAY2009 -:- 				=====*/
/*=====		CREATED BY 	 -:- IndaNIC -:- 				=====*/
/*===========================================================*/

jQueryObj(function(){
		   jQueryObj('.drop_menu li .sun_menu_div').hide();
		   jQueryObj('.drop_menu li').hover(function(){
				jQueryObj(this).find('.sun_menu_div').show();
				jQueryObj(this).addClass('active');				 
			},function(){
				jQueryObj(this).find('.sun_menu_div').hide();
				jQueryObj(this).removeClass('active');	
			});
});