
// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  arguments.callee = arguments.callee.caller;  
  if(this.console) console.log( Array.prototype.slice.call(arguments) );
};
// make it safe to use console.log always
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});


// place any jQuery/helper plugins in here, instead of separate, slower script files.

    $(function() {
      $('#hero-images').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 5000,
        pager:  '#hero-tabs',
        //pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
          //  return '#hero-tabs li:eq(' + (idx) + ') a';
        //}
      });

      $('#direct').click(function() {
        $('#hero-tabs li:eq(2) a').triggerHandler('click');
        return false;
      });
	  
    });
	
    $(function(){
        //Examples of how to assign the ColorBox event to elements
		$("a[rel='example1']").colorbox();
			
	});


// Clear contents of Form Fields
$(document).ready(function() {
	$('.clearField').clearField();
});
