/**************************************************
	NAVIGATION
**************************************************/

function nav(){
	$('.nav ul ul').css({display: 'none'});
	
	$('.nav ul li').hover(function(){
		$(this).find('ul:first').css({
			visibility: 'visible',
			display: 'none'
		}).fadeIn('1000');
	},
	function(){
		$(this).find('ul:first').css({
			visibility: 'hidden'
		});
	});
}

$(document).ready(function() {

	/**************************************************
		NAVIGATION
	**************************************************/

	nav();

	
	/**************************************************
		PRETTY PHOTO
	**************************************************/
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		showTitle : false,
		theme : 'dark_square'
	});
	
    $('.backtotop').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	
});
