$(document).ready(function(){ 
		$('#jroxPaymentOption').change(function(){
				$('#jroxPaymentOptionsForm').show();
		});

		$("#home-form").validate();

        $("ul.sf-menu").superfish(); 
		
		$('#fname').focus(function(){
				if(this.value == 'Enter Full Name'){
					this.value = '';
				}
		});
		$('#fname').blur(function(){
				if(this.value == ''){
					this.value = 'Enter Full Name';
				}
		});
		$('#primary_email').focus(function(){
				if(this.value == 'Enter Email Address'){
					this.value = '';
				}
		});
		$('#primary_email').blur(function(){
				if(this.value == ''){
					this.value = 'Enter Email Address';
				}
		});

		var profiles =

		{

			windowCenter:

			{

				height:400,

				width:400,

				center:1,

				scrollbars:1

			}

		};

	

		$(".popupwindow").popupwindow(profiles);

    

		fadeoutdiv('#successMessage');

	}); 



function ShowText(id) {

	$("#jroxViewText-"+id+"").toggle(400);

}



function fadeoutdiv(div) {

	setTimeout(function(){ $(div).fadeOut('slow'); }, 2000);

};



function showResponse() {

	 $.scrollTo( '0px', 0 );

}


