$(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; 
    }); 
	
	//portofolio boxes
	//Caption Sliding (Partially Hidden to Visible)
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({top:'150px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'205px'},{queue:false,duration:160});
	});
	
	//galerie foto
	$("a.pozegrupate").fancybox({ 
					'zoomSpeedIn': 300, 
					'zoomSpeedOut': 300, 
					'overlayShow': true 
				});
	//votare
	$("a.votare").fancybox({
		'hideOnContentClick': false,
		'frameWidth':300,
		'frameHeight':157
		});
	//newsletter
	$("a#newsletter").fancybox({
		'hideOnContentClick': false,
		'frameWidth':400,
		'frameHeight':400,
		'type':'iframe'
		});
	//viewer
	$("a#viewer").fancybox({
		'hideOnContentClick': false,
		'autoDimensions':false,
		'titleShow':false,
		'width':800,
		'height':800,
		'type':'iframe'
		});
	//$("a#myplacel").fancybox({
	//	'scrolling'		: 'no',
	//	'titleShow'		: false
	//	});
	
	
	//search
	$(".defaultText").focus(function(srcc)
    {
        if ($(this).val() == $(this)[0].title)
        {
            $(this).val("");
        }
    });
    
    $(".defaultText").blur(function()
    {
        if ($(this).val() == "")
        {
            $(this).val($(this)[0].title);
        }
    });
    
    $(".defaultText").blur();
	
	$(".camp").keyup(function(event) {
                if (event.keyCode == 13) {
                    $("#cauta").submit();
                }
        }) 
});


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