 $(document).ready(function() {
         $(document).pngFix(); 


//$(".nyroModal").nyroModal();

//rollovers
$(".imgover, .nav_list a img").hover(
			function()
			{
				this.src = this.src.replace("_off","_over");
			},
			function()
			{
				this.src = this.src.replace("_over","_off");
			}
		);
		
	
	
	$("#DoDirectPaymentForm").validate();
	
	$(".nyroModal2").click(function(){
		window.open("signup_pop.php","","width=400,height=150,scrollbars=false");
		return false;
	});
	

});

