function loadContactForm() {
	language = document.getElementsByTagName("html")[0].getAttribute("lang");
	document.getElementById("contactFrame").src = 'form,contact,smtp.php?language=' + language;	
	document.getElementById("contactButton").src = 'tl_files/images/system/button,contact-us,' + language + '.png';	
}

$(document).ready(function() {
	// toggles the slickbox on clicking the noted link  
	$('.contactButtonWrapper img, .contactFrameWrapper img').click(function() {
		$('.contactFrameWrapper').toggle(400);
		return false;
	});
});

function closeSidebar() {
	$('.contactFrameWrapper').delay(1000).toggle(400);
}
