(function(){
	$("marquee").marquee();
	var len = $("#payment option").length;
	for (var i = 1; i <= len; i++ ) {
		var $option = $("#payment option:nth-child(" + i + ")");
		if ( $option.html() == "Full Payment" ) {
			$option.html("Full Payment - $455");
		} else if ( $option.html() == "Half Payment" ) {
			$option.html("Half Payment - $227.50");
		} else if ( $option.html() == "Deposit" ) {
			$option.html("Deposit - $130");
		} else if ( $option.html() == "Individual Sign-up(Includes Jersey)" ) {
			$option.html("Individual Sign-up (Includes Jersey) - $130");
		} else if ( $option.html() == "Try-Outs (Portland Energy)" ) {
			$option.html("Try-Outs (Portland Energy) - $60");
		} 	
	}
	$("#payment").change(function(){
		fourPPcurrentValue = $("#payment").find("option:selected").val();
		if (fourPPcurrentValue == "Full Payment"){
			newLocation = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PGAU6978FZ66E&on0=Team%20Fee&os0=Full%20Payment&currency_code=USD";
		} else if ( fourPPcurrentValue == "Half Payment" ){
			newLocation = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PGAU6978FZ66E&on0=Team%20Fee&os0=Half%20Payment&currency_code=USD";
		} else if ( fourPPcurrentValue == "Deposit" ) {
			newLocation = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=PGAU6978FZ66E&on0=Team%20Fee&os0=Deposit&currency_code=USD";
		} else if ( fourPPcurrentValue == "Try-Outs (Portland Energy)" ) {
			newLocation = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QCUB42CJG5UXY&on0=Individual%20payment&os0=Try-Outs%20(Portland%20Energy)&currency_code=USD";
		} else if ( fourPPcurrentValue == "Individual Sign-up(Includes Jersey)" ) {
			newLocation = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QCUB42CJG5UXY&on0=Individual%20payment&os0=Individual%20Sign-up(Includes%20Jersey)&currency_code=USD";
		}
	});
})();
