$(document).ready(function() {
	$("#navigation").ifixpng();
});

function validate(){
	var ids="well_pressure well_temp h2s co2 chlorides first_name surname company_name email".split(" ");
	for(var i=0;i<ids.length;i++){
		if(document.getElementById(ids[i]).value.replace(/^(\s|\u00A0)+|(\s|\u00A0)+$/g,"")==""){
			alert("Please make sure all fields marked with an asterik are filled in properly");
			return false;
		}
	}
	return true;
}
	


