

$(document).ready( function() {
	
	//$("#home #offer_menu p").css({ "padding" : "10px 0" });
	//$("#home #offer_menu p span.num").css({ "margin-top" : "-5px", "padding-top" : "4px" });
	/*
	if($.browser.msie) {
		$("#home #offer_menu p").css({ "padding" : "12px 0" });
	} else {
		$("#home #offer_menu p").css({ "margin-top" : "-5px", "padding-bottom" : "10px" });
	}
	*/
	
	$("input.text")
		.focus( function() {
			if ( $(this).val() == $(this).attr("title") ) {
				$(this).val("");
			}
		})
		.blur( function () {
			if ( $(this).val() == "" ) {
				$(this).val( $(this).attr("title") );
			}
		});
		
		$("textarea.text")
		.focus( function() {
			if ( $(this).html() == $(this).attr("title") ) {
				$(this).html("");
			}
		})
		.blur( function () {
			if ( $(this).html() == "" ) {
				$(this).html( $(this).attr("title") );
			}
		});
		
});

