$(document).ready(function(){

	$('html').addClass('js');
	$('.tooltip').tooltip();
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal',
		padding: 40,
		opacity: 0.35,
		showTitle: true,
		allowresize: true,
		counter_separator_label: '/',          
		theme: 'dark_square' 
	});
	
	/* ******************* */
	/* POPUPS */
	$('#black').css({opacity: 0.5});
	
	$('#sender-mail').click(function(){
		sendMail();
	})
	
	$('.close-it').click(function() {
		$('#black').fadeOut('fast');
		$('.popup').animate({top:0-$('.popup').height()-100},600,'easeOutBounce');
	});
	
});

function sendMail() {
	$('.popup').css({top:0-$('.popup').height()-10});
	pLeft = ($('body').width() - $('.popup').width()) / 2;
	$('#black').fadeIn('fast');
	$('.popup').show('fast');
	$('.popup').css({left:pLeft}).animate({top:100},800,'easeOutElastic');
}

