var ww = {
	
	sendMessage: function(thisform)
	{
		
		ww.form = thisform;
		
		jQuery.post("contact",jQuery(thisform).serialize(), 
			function(data) {

				if (data.error)
				{
					
					if (data.refresh) {
						window.location.href = '/kapcsolat';
					}
					else {
						jQuery('.error').html('<ul id="ul-error">' + data.msg + '</ul>');
						
						jQuery('.error').show('slow');
						jQuery('p#success').hide('slow');
					}
					
				}
				else
				{
					window.location.href = '/kapcsolat+s/1';
					/*
						jQuery('.error').hide('slow');
						jQuery('p#success').show('slow');
						ww.form.reset();
					*/
				}
			},
			"json"
		);
	},
	toggleBox : function(id)
	{
		$('#'+id+' .vmenu').toggle()
		$('#'+id+' .vsubmenu').toggle();
	},
	toggleMap : function(cls)
	{
		$('.'+cls).toggle();
	}
	
}

$(document).ready(function(){
	$('.adatok tr:even').addClass('vilagos');
	$('.adatok tr:odd').addClass('sotet');
});

