jQuery(document).ready(function($) {
		
	$('#nav li').hover(function() {
    	$(this).find('ul:first').stop().slideDown(300);
        }, function() {
    	$(this).find('ul:first').stop().slideUp(250, function() {
			$(this).attr('style', '');		
		});	
   	});
	
	$("a[rel^='prettyPhoto'], a[rel^='lightbox'], a.lightbox, a.iframe, .gallery a").prettyPhoto({
		allowresize: false, /* true/false */
		default_width: 610,
		default_height: 400,
		opacity: 0.4,
		"theme": 'light_square' /* light_rounded / dark_rounded / light_square / dark_square */																
	});
	
	
});