	$(document).ready(function(){

	 /* Blur focus clicks */
    $('a').click(function() {
       	    this.blur();
            });
    
   /* Hover img */        
    $('.col_left img, .col_right img').hover(function(){
    		$(this).fadeTo("fast", 0.9);
    	}, function() {
    		$(this).fadeTo("fast", 1);
    	});
    	
});