jQuery(document).ready(function($){

	
   var deviceAgent = navigator.userAgent.toLowerCase();
    var agentID = deviceAgent.match(/(iphone|ipod|ipad|iPad|iPhone|iPod)/);
		
	//	$(window.location).attr('href', 'http://www.rightsize.com/mobile');
	
    if (deviceAgent.match(/(iphone|ipod|iPhone|iPod|Android|android)/)) {    

	
	} else if (deviceAgent.match(/(ipad|iPad)/)) {    

	
		
	}else{
	
	}
	


    $("#clearButton").click(function () { 
	
		$('.txt').each(function(){
					var d = $(this).attr("rel");
					//$('.txt').val('');
				    // $(this).blur(function(){
				      //  if ($(this).val() == ''){
				            $(this).val(d).addClass('ghost-text');
				      //  }
				   // });
				       
				});
    });


});





