function placeholder_blur(item, placeholder){
	if($(item).val()==''){
		$(item).val(placeholder);
	}
}
function placeholder_focus(item, placeholder){
	if($(item).val()==placeholder){
		$(item).val('');
	}
}
$(document).ready(function(){
	$("div.front_projects td.project div.project").mouseenter(function(){
			$("div.info", this).addClass('hover');
				var parent = $(this).parent();
				$("img.default", parent.prev()).hide();
				$("img.hover", parent.prev()).show();
				$("img.project_item", parent).hide();
				$("img.project_item_hover", parent).show();
				$(parent).addClass('hover');
			$("a.img", this).hide();
			$("div", this).show();
		}).mouseleave(function(){
			$("div.info", this).removeClass('hover');
				var parent = $(this).parent();
				$("img.default", parent.prev()).show();
				$("img.hover", parent.prev()).hide();
				$("img.project_item", parent).show();
				$("img.project_item_hover", parent).hide();
				$(parent).removeClass('hover');
			$("a.img", this).show();
			$("div", this).hide();
	});
});
