$(document).ready(function() { 

   if ($('.quotes_item').length > 1)
   {
       $('#quotes_content').cycle({
           fx: 'scrollUp'
          ,timeout: 3500
          ,delay:  -1000
          //,pager: "#container .navi"
          //,after: onAfter
          ,sync: 1
       });
    }

    if ($('#landing').length)
    {
       $.each( $('#rightCol li'), function(i,el){
          if (!$(el).hasClass('noslide'))
          {
             var id = "#"+$(el).children("a").attr("id")+"p";
             $(id).hide();
             $(el).bind("mouseover",function(){
                $(id).show();
             });
             
             $(el).bind("mouseout",function(){
                 $(id).hide();
             });
          }
       });
    }
     
    if ($('#default').length) {

        $('#changeLocations').bind('click', function(){
           $("#locationList").slideToggle();
        });

     	$("#locationList").hide();
   }
});
//---------------------------------------
function _debug ($string) {
   try {
      console.log($string);
   } catch (err) { 
      //$("#footer").append($string + "<div class='hr'><hr /></div>"); 
   }
}