$(document).ready(function() {
	$(document).pngFix();
	
	$('.clearField').clearField({
		blurClass: 'clearFieldBlurred',
		activeClass: 'clearFieldActive'
	});
	
	//formular contact cu ajax
	var options = { 
        success:       showResponse   
    }; 
 
    $('#formcontact').submit(function() {    
        $(this).ajaxSubmit(options); 
        return false; 
    }); 
	
	//galerie foto
	$("a.pozegrupate").fancybox({ 
					'zoomSpeedIn': 300, 
					'zoomSpeedOut': 300, 
					'overlayShow': true 
				});
	//votare
	$("a.votare").fancybox({
		'hideOnContentClick': false,
		'frameWidth':300,
		'frameHeight':157
		});
	//captcha
});


// post-submit callback 
function showResponse(responseText, statusText)  { 
	$('#mesaje').fadeOut("fast",function(){
						 $('#textmesaje').html(responseText);
						 });
		$('#mesaje').fadeIn("fast");
} 
