			var $t = jQuery.noConflict();
			$t(document).ready(function(){
					$t("ul.topNav li a").hover(function() { //When trigger is clicked...
						//Following events are applied to the subnav itself (moving subnav up and down)
						$t(this).parent().find("div.subnav").stop().slideDown('fast').show('slow', function(){
							$t(this).height("auto");
						}); //Drop down the subnav on click
						$t(this).parent().hover(function() {
						}, function(){	
							$t(this).parent().find("div.subnav").stop().slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
						});
						//Following events are applied to the trigger (Hover events for the trigger)
						}).hover(function() { 
							$t(this).addClass("subhover"); //On hover over, add class "subhover"
						}, function(){	//On Hover Out
							$t(this).removeClass("subhover"); //On hover out, remove class "subhover"
					});
				});	
