$(function() {
   $.nyroModalSettings({
		regexImg: 'image\.php'
	});
   $("input[name='pay_type']").change(function() {
		if( $("input[@name='pay_type']:checked").val() == "deposit" ) {
			$("#deposit").show();
			$("#user_details").show();
		}
		else {
			$("#deposit").hide();
			$("#user_details").hide();
		}
	});
   $(".main_link").click(function(e) {
		var id = $(this).attr("category");
		if( id != null ) {
			if( $(this).attr("href") == "#" )
				e.preventDefault();
			$("div[parent='"+id+"']").toggle();
		}
	});
});
