function changeVisible(obj, id){
	if($(id).style.display == "" || $(id).style.display == "none"){
		$(id).style.display = 'block';
		obj.src = "images/ico-mehr-on.gif";
	}
	else{
		$(id).style.display = 'none';
		obj.src = "images/ico-mehr.gif";
	}
}

/*
var j = jQuery.noConflict();

j(document).ready(function(){
	j("#gastroForm").validate({
		
		messages: {
			ort: "W&auml;hlen Sie den Ort."
		}	
	});
	
});
*/
