

//var headerImages = new Array('header1.jpg','header2.jpg','header3.jpg', 'header4.jpg');

$(document).ready(function() {

  // menu drop-downs
  /*
  $("#leftcol li:not(.active)").hover(function() {
    $(this).find('ul').slideDown(300);
  }, function() {
    $(this).find('ul').slideUp(200);
  })
  */

 
  // search box text
  $("#sitesearch_input").focus(function() {
    if ($(this).val() == 'Search') {
      $(this).val('');
    }
  });
  $("#sitesearch_input").blur(function() {
    if ($(this).val() == '') {
      $(this).val('Search');
    }
  });

 /*	var t = new ImageFlow();
	t.init({ ImageFlowID:'header',
                aspectRatio: 2.7,     //width to height ratio of .imageflow div >1 = width>height
                reflections:false,
                reflectionP:0.5,
                xStep: 90,      //smaller value puts images closer together
                opacity: false,
                //opacityArray:       [10,9,8,7,6],
                //startID: 3,
                slider: false,
                caption: false,
                buttons: false,
                imagesHeight: 0.6,    //% of  height to parent .imageflow 1.0 = 100%
                percentLandscape: 95,
                circular: true,
                onClick: function() { document.location = this.url; }
              });


  $("#imgflow_forward").click(function() { t.MouseWheel.handle(-1); });
  $("#imgflow_back").click(function() { t.MouseWheel.handle(+1); });*/
});
