	$(document).ready(function(){
        $('a[href^="http:"]').attr('target','_blank')
		
		
		$("#menu li a").hover(function(){
                $(this).parent().stop().animate({width:'160px'},{queue:false, duration:300})
            },  function(){
                $(this).parent().stop().animate({width:'140px'},{queue:false, duration:300})            
            });	

	    $(".colorbox").colorbox();
	});	
