jQuery.noConflict();

	function showSignup() {
		jQuery("#stay-in-touch", parent.document.body).animate({width:"800px"}, {queue:false, duration:500});
    }
	
	function closeSignup() {
		jQuery("#stay-in-touch", parent.document.body).animate({width:"174px"}, {queue:false, duration:500});
    }
	
	function clickclear(thisfield, defaulttext) {
		if (thisfield.value == defaulttext) {
			thisfield.value = "";
		}
	}
	function clickrecall(thisfield, defaulttext) {
		if (thisfield.value == "") {
			thisfield.value = defaulttext;
		}
	}


