//Namespace and helper function for Portfolio Property

(function Pprop(p) {


} (Pprop = {}))

$(document).ready(function() {
    $('.replace').focus(function(){
		if ($(this).val() == $(this).attr('id')) {
			$(this).val('');
		}
	});

	$('.replace').blur(function(){
		if ($(this).val() == '') {
			$(this).val($(this).attr('id'));
		}
	});
});

