// DOM ready

		$(document).ready(function(){
		

		$('.col').css('display','none');		
		$('.col').fadeIn(1000,function(){$(this).fixClearType()});
			
		
		$('.col2').css('display','none');		
		$('.col2').fadeIn(1000,function(){$(this).fixClearType()});
		
		$('#homepage-img').css('display','none');		
		$('#homepage-img').fadeIn(1000,function(){$(this).fixClearType()});
		
		//Cleartype fix
		jQuery.fn.fixClearType = function(){ 
    	return this.each(function(){ 
        		if( !!(typeof this.style.filter  && this.style.removeAttribute)) 
            		this.style.removeAttribute("filter"); 
    		}) 
		} 

		

		});


