// JavaScript Document

$(document).ready(function() {
   
	$('#header_links').hide();
	
	$("#sn_logo").hover(function() { //When trigger is clicked...  
  
  		        //Following events are applied to the subnav itself (moving subnav up and down)  
        $('#header_links').slideDown('fast').show(); //Drop down the subnav on click  
  
        $('#header_links').hover(function() {  
        }, function(){  
            $(this).slideUp('slow'); //When the mouse hovers out of the subnav, move it back up  
        });  
  
        
    });  
	
	
});
