$(document).ready( function() {
	$("div.toggleBox").live("click", function () {
		$("div#hiddenLogin").toggleClass("open");
	});
	

		
$('div').live('pageshow',function(event, ui){
	$("div#hiddenLogin").removeClass("open");
	});
});

document.addEventListener("touchstart", function() {},false);

$(function() {

	$('input[type=text]').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
   			}	
	});

    $('input[type=text]').blur(function() {
		if (this.value == '') {
     		this.value = this.defaultValue;
   			}	
	});
	
	$('textarea').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
   			}	
	});

    $('textarea').blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
   			}	
	});

});
