$(document).ready(function() {
                         
      if( screen.width > 2560 )
       {
         $('body').css({ 'background-image' : 'url(/images/body-bg-3840.jpg)' });
       }  
        else if( screen.width > 1920 )
       {
         $('body').css({ 'background-image' : 'url(/images/body-bg-3200.jpg)' });
       }     
        else if( screen.width > 1400 )
       {
           $('body').css({ 'font-size' :  '.9em', 'background-image' : 'url(/images/body-bg-2000.jpg)' });
       }
       else
       {
           // default 1400px wide bg image  as set in home.css
       }
             
    $("a.preview").fancybox();
    
    $("a.new-window[href]").attr("title", "Opens in new window");
    
    $("a.new-window[href]").live("click",
    
        function(event)
        {
            window.open($(this).attr("href"));
            event.preventDefault();
        }
    );

    $('#contact a').defuscate();

});
	





