
window.addEvent('domready', function() {

	if ($('freecap'))
	{
		$('freecap').setStyle("cursor", "pointer");
		$('freecap').setProperty("title", "Click here to change the word shown");
		$('freecap').addEvent('click', function(e) {
			thesrc = this.src;
			thesrc = thesrc.substring(0,thesrc.lastIndexOf(".")+4);
			this.src = thesrc+"?"+Math.round(Math.random()*100000);
		});
	}

	if ($('submit_contact'))
	{
		$('submit_contact').addEvent('mouseover', function(e) {
			$('submit_contact').addClass('hover');
		});

		$('submit_contact').addEvent('mouseout', function(e) {
			$('submit_contact').removeClass('hover');
		});
	}

});

