$(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);
		$( "form" )[ 0 ].reset();
        return false; 
    }); 
	
	//portofolio boxes
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'55px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:160});
	});
	
	//galerie foto
	$("a.pozegrupate").fancybox({ 
					'zoomSpeedIn': 300, 
					'zoomSpeedOut': 300, 
					'overlayShow': true 
				});
	//captcha
});


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