/* -------------------------------------------------------------------------------- */
/*  TRFU 2010 - In Page JS Code  								                    */
/*  Ver     : 1                                                                     */
/*  Created : 14 August 2010                                                        */
/* -------------------------------------------------------------------------------- */

$(document).ready(function(){
			
	var $dropDownMenu = $("div.main-navigation ul.top-nav li"),
		animated = false;
			
	$dropDownMenu.hover(
	function()
	{					
		$(this).addClass("selected").removeClass("default").find("ul.sub-nav").stop(false, true).slideDown('fast').show(); //Drop down the subnav on hover on				
	},
	function()
	{				
		animated = true;
		$(this).addClass("default").find("ul.sub-nav").stop(false, true).slideUp('fast'); //When the mouse hovers out of the subnav, move it back up		
	});										

});

$(window).load(function(){
});
		
