$(document).ready(function(){
	
	// contact form 
	$('#contact_form').live("submit",function(event){
		event.preventDefault();
		$.ajax({
			url:"/contact_us/form/?js=1",
			type:"post",
			cache:false,
			data:$('#contact_form').serialize(),
			beforeSend:function(){
				$('#ajax_contact').show()
			},
			success:function(html){
				$.get('/contact_us/thanks/',function(){
					$("#col_form").html(html);
				});
			},
			complete:function(){
				$('#ajax_contact').hide();
			}
		});
	})
	
});


	 
