$(document).ready(function(){

	$("#top_menu .container .menu li a").parent().find(".dropdown").hide();
	
	/*! Horizontal menu with dropdown effect Start */
	$("#top_menu .container .menu li a").mouseover(function() {

		//Following events are applied to the dropdown itself (moving subnav up and down)
		$(this).parent().find(".dropdown").show();
		//$(this).parent().find(".dropdown").fadeIn('slow').show();
		
		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find(".dropdown").hide();
			//$(this).parent().find(".dropdown").fadeOut('0');
		});

		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			$(this).parent().addClass("active");
		}, function(){
			$(this).removeClass("active");
	});
	/*! Horizontal menu with dropdown effect End */
	
	
});