window.onload = init;

function init() {
	var d = document.getElementById('contactLink');
	d.onclick = contactFormActive;
	//var e = document.getElementById('contactBannerLink');
	//e.onclick = contactFormActive;
}

function contactFormActive() {
	var f = document.getElementById('contactWrapper');
	f.className = 'formActive';
}
/*
$(document).ready(function () {
	$('img').bind('contextmenu', function(e){
		alert("� Copyright ReAgent Limited 2011 All Rights Reserved");
		return false;
	});
});
*/

$('#testLink').bind('click', function() {

alert('test');
}); 
