function clearMe(obj, text) {
	if(obj.value == text) {
		obj.value = '';
	}
}

function restoreMe(obj, text) {
	if(obj.value == '') {
		obj.value = text;
	}
}

$(document).ready(function(){
	
	// Fix logo in IE6

	$(function(){
		$('h1#logo').pngFix();}
	);
	
});
