
$(document).ready(function(){

  if($.cookie("wasatch_corp_bgImg")) {

    var imgCookieLink = $.cookie("wasatch_corp_bgImg");  
    $("body").css("background-image", "url('" + imgCookieLink + "')");

  } else {
  
  $("body").css("background-image", "url(/themes/wasatch/shared/images/bg/body-bg-04.jpg)");
  
  }

  //***********************************


  // Twitter odd rows
  $('#twitter_update_list_618 li').addClass('tweet');
  $('.tweet:odd').addClass('odd');

  //***********************************


  $('.search_field').keyup(function() {
    var s = jQuery.trim( $('.search_field').val() );
    if ((s != '') && (s.length > 2)) {  
      $('.search_form').submit();
    } else {
      $('#search-results').html("");
    };
  });

/*   $('#photos, #bg_selector * img').addClass('gone'); */

  //***********************************

  // Since xhtml strict doesn't allow _blank open external links in a new window this way


  $(function() {
    $('a[rel*=external]').click( function() {
      window.open(this.href);
      return false;
    });
  });
  
  // Chat now window
  
  $(function() {
    $('a.chat_window').click( function() {
      window.open(this.href, "chat", "width=475,height=400,modal=yes,alwaysRaised=yes");
      return false;
    });
  });

  //***********************************


  $.preload( '#photos .panel img', {
    onFinish: function() {
      $('#photos').removeClass('gone');
      $('#photos').galleryView({
        panel_width: 810,
        panel_height: 285,
        overlay_height: 30,
        frame_width: 110,
        frame_height: 55,
        border: "none",
        background_color: "black",
        pause_on_hover: true,
        transition_interval: 6000
      });
    }
  });

  //***********************************

  $.preload( '#bg_selector li a img', {
    onFinish: function() {
      $('#bg_selector li a img').removeClass('gone');

      $('#bg_selector').jcarousel({
        scroll: 1,
        animation: 150,
        wrap: "both"
      });
    }
  });

  //***********************************

  $(function(){  

    $("#bg_selector a").click(function() {
      var imgLink = $("img", this).attr("src");
      $.cookie("wasatch_corp_bgImg", "" + imgLink + "", { path: '/', expires: 365 });
      var imgCookieLink = $.cookie("wasatch_corp_bgImg");       
      $("body").css("background-image", "url('" + imgCookieLink + "')"); 
      return false;
    });  

  });

//***********************************

// Corporate page video colorbox
$(".cboxvideo").colorbox({width:"455px", height:"335px", inline:true, href:"#thevideo"});

//***********************************

}); // end