$(function() {
	
	// Cufon
	Cufon.replace('#menu ul li a, #footer .bmenu ul li a, h2.title, .side_menu h2, #newsletter h2, #galeria h2, .side_menu ul li a, .box h2, a.btn_black, #partners p, .trajan', { fontFamily : 'TrajanPro', hover : true });
	
	// Datepicker
	// $( "#datepicker" ).datepicker();
	
	// Fancybox
	$('a.fancybox').fancybox();
	
	// Menu górne
	$("#menu ul").jessmenu( {
		delay : 200,
		hoverClass : 'hover',
		arrows : false,
		animation : 'fade'
	});

	// ukrycie texu w inpucie po kliknieciu
	$("#newsletter input.text").focus(function(){
		if(this.value == this.defaultValue) 
			this.value = '';
		 	
	}).blur(function(){
		if(this.value == '') 
			this.value = this.defaultValue;	
	});	

})

