
var Site = {
	domReady : function () {  
		if($defined($$('.thisIsPageHoverThis'))){
			$$('.thisIsPageHoverThis').set({
    			'opacity': '0.3'
      		});
      		
      		$$('.thisIsPageHoverThis').addEvents({
            	mouseleave: function(e){
	        		this.morph({
    	        		'opacity': '0.3'
            		});
	        	},
	        	mouseenter: function(){
	        		this.morph({
    	        		'opacity': '1'
            		});
	        	}
            });
      	}
	}
}


window.addEvent('domready', Site.domReady);

function showForm(){
	document.getElementById('orderForm').style.display = 'block';
}
