// nav
$(function() {
	$("a.drop").parent().hover(function(){
        $( this ).children( 'ul' ).show();
    }, function(){
        $( this ).children( 'ul' ).hide();
    } );
});


