

F2GJoinLink = {

	Init:  function(){
	
      $('div#F2GJoinDialog').dialog({
		   autoOpen: false,
   		bgiframe: true,
		   resizable: true,
         width: 500,
         modal: true,
         buttons: { 
			   'I\'m 18 or 19 years old': function() { window.location = '/Motoring/Roadside-Assistance/Free2GoApplication.aspx?product=StandardSubsequent'; }, 
			   'I\'m 17 years old, give it to me for free': function() { window.location = '/Motoring/Roadside-Assistance/Free2GoApplication.aspx?product=StandardInitial'; }
			}
   	});	
      $('a.F2GJoinLink').click(function(){
         $('#F2GJoinDialog').dialog('open');
         return false;
   	});	
	}

};

$(F2GJoinLink.Init);