Shadowbox.init({
	overlayColor:	   	'#000',
    overlayOpacity:		'0.8',
    showMovieControls: 	true,
    viewportPadding:   	0,
	skipSetup: 			false,
});

$(document).ready(function(){
    dropDown();
});


function dropDown() {
	$('#nav ul li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
}
