// JavaScript Document
jQuery(document).ready(function(){
  
  //$('.sideNav ul li a').each(function(){
    //length = $(this).text().length;
    //if(length > 15)
    //{
      //alert(length);
    //}
  //});
  

  $(".sideNavDbl, ._sideNavDbl").hover(
    function(){
      $(this).addClass("sideNavBgDbl");
    },
    function(){
      $(this).removeClass("sideNavBgDbl");
  });
  
  $(function(){
    $('#loopedSlider').loopedSlider({
      container: '.homeGallery',
      slides: '.slides',
      containerClick: false,
      autoStart: 8000
    });
  });
  
  $(".subColWrap table").slice(0, 2).css({'margin' : '0' + 'px'});
});
