/*********************
* www.typotemp.com
*********************/
 
jQuery.noConflict();

(function($) { 
  $(function() {
 	
	 

		$('#teaser_nav ul.sub').hide();
		 
	
		 $('#teaser_nav ul li').mouseover(function(){
			 $(this).find('ul.sub').slideDown("fast");
		   }).mouseleave(function(){
			 $(this).find('ul.sub').hide();
		   });
		 
 
	
 
});})(jQuery);
 
