var Main = new Class({
	
	initialize : function(){
		
		//Explorer 6 fixes
		if (Browser.Engine.trident && Browser.Engine.version == 4){
			$$('.link li:first-child a').setStyle('background','none');
			$$('.imgcontainer p:first-child').setStyle('display','block');
		}
		
		//formular
		if ($('formular')) {
			
			$('formular').getElement('input[name=Submit]').addEvents({
				'mouseover':function(){
					this.set('src','/img/form/'+this.get('class')+'/btn_send_over.gif')
				},
				'mouseout':function(){
					this.set('src','/img/form/'+this.get('class')+'/btn_send.gif')
				}
			});
		}
	}
}); 

window.addEvent('domready', function(){ new Main(); });
