$(document).ready(function(){ 
	$('.div-img-steps').fadeTo("fast", 0.3);
});

function showhideComp(setVisible){
	var vis = setVisible;
	if(vis==true){
		$('.compRow').show();	
		newuserform.Company.value='';
		newuserform.CompanyVAT.value='';		
	}else{
		$('.compRow').hide();	
		newuserform.Company.value='N/A';
		newuserform.CompanyVAT.value='N/A';		
	}
}
function submitForm(formID){
	$('#'+formID).submit();
}
