/**
* init
**/
window.addEvent('domready', function(){
    Website.init();
});


var Website = {

    init: function(){    

        // jsEnabled class for body
        $(document.body).addClass('jsEnabled');   
        
        
        // External links
        $$('a[rel="external"]').addEvent('click', function(){ 
			$$('a[rel="external"]').setProperties({ target: '_blank' }); 
		});
		
        
        
		// Form check fields
		var aCheckFields = $$('.swisCheckField');
		var iCheckFields = aCheckFields.length;
		while (iCheckFields--) {         
		    if (aCheckFields[iCheckFields].value == '') {
		        aCheckFields[iCheckFields].value = 'swis_check_ok';
		    }
		}
	
    }
    
};

        
