jQuery(document).ready(function(){


	$(".project_grid_item").hover(function(){
		$(".proj_item_img", this).hide();
		$(".proj_item_text", this).removeClass("hide"); 
		},function(){
		$(this).removeClass("grid_item_hover");
		$(".proj_item_text", this).addClass("hide");
		$(".proj_item_img", this).show(); 
	});


	$("#subForm").validate();


		$('input[type="text"]').focus(function() {

		    if (this.value == this.defaultValue){ 
		    	this.value = '';
		}
		if(this.value != this.defaultValue){
				this.select();
			}
		});
		$('input[type="text"]').blur(function() {
		    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});





 
});
