$(document).ready(function(){		var webDbName = $("#webDbName")[0].value	var lg = $("#jsLanguage")[0].value		$("input[name='ageConsent']").imageTick({ // the selector can be a class as well, target your radios or checkboxes		tick_image_path: "/" +  $('#webDbName')[0].value + "/RadioButtonOn.gif" ,  // the image you want to use as a selected state of the radio/checkbox		no_tick_image_path: "/" +  $('#webDbName')[0].value + "/RadioButtonOff.gif"  , // image you want to use as a non selected state		image_tick_class: "ageConsentRadios" // the class you want to apply to all images that are dynamically created	});			$("input[name='keepInformed']").imageTick({ // the selector can be a class as well, target your radios or checkboxes		tick_image_path: "/" +  $('#webDbName')[0].value + "/CheckBoxON.gif" ,  // the image you want to use as a selected state of the radio/checkbox		no_tick_image_path: "/" +  $('#webDbName')[0].value + "/CheckBoxOff.gif"  , // image you want to use as a non selected state		image_tick_class: "keepInformedCheckboxes" // the class you want to apply to all images that are dynamically created	});				//ButtonGetMyFreeTrial	$("#imgSignupSubmit").hover(function() {		btn = (lg=="F")? "ButtonGetMyFreeTrial_FR" : "ButtonGetMyFreeTrial" 		btn = "/" + webDbName + "/" + btn		$(this).attr("src",btn + "_Over.gif");			}, function() {		$(this).attr("src",btn + ".gif");	});	$("#imgSignupSubmit").click(function() {		btn = (lg=="F")? "ButtonGetMyFreeTrial_FR" : "ButtonGetMyFreeTrial" 		btn = "/" + webDbName + "/" + btn		$(this).attr("src", btn + "_Click.gif");	})		//////////////////////////////////////////////////////////////////	//imgBtnClose	$("#imgBtnClose").hover(function() {		btn = (lg=="F")? "ButtonClose_FR" : "ButtonClose" 		btn = "/" + webDbName + "/" + btn		$(this).attr("src",btn + "_Over.gif");			}, function() {		$(this).attr("src",btn + ".gif");	});	$("#imgBtnClose").click(function() {		btn = (lg=="F")? "ButtonClose_FR" : "ButtonClose" 		btn = "/" + webDbName + "/" + btn		$(this).attr("src", btn + "_Click.gif");	})		});
