/*******************************************************************************************/
/*
/*		This template/design is released under the Creative Commons Attribution 3.0 license. 
/*		This means that it can be used for private and commercial purposes, edited freely 
/*		or redistributed as long as you keep the link back to AS Designing. 
/*		For more info please see our terms of use: http://www.astemplates.com/terms.php
/*
/*		Designed by 'AS Designing'
/*		Web: http://www.asdesigning.com
/*		Email: info@asdesigning.com
/*
/*******************************************************************************************/

var $j = jQuery.noConflict();

$j(document).ready(function(){
	$j('#topmenu ul li.deeper').hover(
		function() {
			$j(this).addClass("actives");
			$j(this).find('> ul').stop(false, true).fadeIn();
			$j(this).find('>ul ul').stop(false, true).fadeOut('fast');
		},
		function() {
			$j(this).removeClass("actives");        
			$j(this).find('ul').stop(false, true).fadeOut('fast');
		}
	);
});
