$(document).ready(function(){
	$('.colorbox').colorbox();
});

function showContact(){
	$("#contact_us_background").show();
	$("#contact_us").show();
}

function hideContact(){
	$("#contact_us_background").hide();
	$("#contact_us").hide();
	$("#contact_form").get(0).reset();
}

