URL_COMPARE = "/compare.html";

function compareLinkClick(){

	var inputModels = $("input:checked[type='checkbox'][name^='chkVehicleModel_']");
	url = URL_COMPARE + "?";

	if( inputModels.length > 1 ){
		for(var i=0; i < inputModels.length; i++){
			url += "&modelYearId" + i + "=" + inputModels[i].id;
			var attributes = inputModels[i].attributes;
			for(j=0; j<attributes.length; j++)
			{
				if(attributes[j].nodeName == "preselect")
				url += "&preselect"+i+"="+attributes[j].nodeValue;
			}
		}
 		location.href=url;
	}else{
		$("#alertContent").html("Please select at least two vehicles to compare");
		$("#alertOverlay").jqmShow();
	}
}

function compareTrimLinkClick(){

	var inputModels = $("input:checked[type='checkbox'][name^='chkVehicleModel_']");
	url = URL_COMPARE + "?";

	if( inputModels.length > 1 ){
		for(var i=0; i < inputModels.length; i++){
			url += "&aCode" + i + "=" + inputModels[i].id;
		}
		location.href=url;
	}else{
		$("#alertContent").html("Please select at least two vehicles to compare");
		$("#alertOverlay").jqmShow();
	}
}