function specTable() {
  $('#specTable tbody tr:odd').addClass('alt'); // zebra striping
  $('#specTable tbody tr').mouseover(function() { $(this).addClass('hover') }).mouseout(function() { $(this).removeClass('hover') }); // hover effect
  if($('#jTest')[0].offsetWidth == 1) {
	$('#es a, #ds a, #esds a, #est a, #led a').html(''); // remove text from icon cells if images are turned on  
  }
  $('#specTable tbody tr:even td').each(function() {
	if($(this).html()=='YES') {
	  $(this).html('').addClass('bullet1');	
	}
  })
  $('#specTable tbody tr:odd td').each(function() {
	if($(this).html()=='YES') {
	  $(this).html('').addClass('bullet2');	
	}
  })
}

function copyrightDate() {
  var date = parseInt($('#copyrightDate').text());
  var yr = new Date().getFullYear();
  if(date<yr) {
	$('#copyrightDate').text(yr);  
  } else {
	$('#copyrightDate').text(date);
  }
}

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};

var snippets = new Array();
var num = Math.floor(Math.random()*6)+1;
snippets[0] = '<h3 class="replaceThis">New Products</h3><a href="/products/familyfinish.aspx?cid=n"><img src="/images/sidebar-new-product-'+num+'.jpg" alt="New Products" height="142" width="230" /></a><p><strong>Light does many things.</strong><br /> Our days rise and set by it. It soothes. It uplifts. It illuminates our lives - from small everyday moments, to momentous occasions. <a href="#" class="moreLink">More &gt;</a> <span class="hide">Throughout our days, throughout our homes, light helps us see. It allows us to notice the details, draws attention to what really matters. LIGHTING INSPIRES. It shines as a focal point. It\'s the spark that comes first, and subsequently illuminates everything - and everyone - it touches. <a href="/products/families.aspx?cid=n">View our new products</a><br /><a href="#" class="lessLink">&lt; Hide</a></span></p>';
snippets[1] = '<h3 class="replaceThis">Landscape Lighting</h3><a href="/products/families.aspx?cid=9"><img src="/images/sidebar-landscape-lighting.jpg" alt="Landscape Lighting" height="142" width="230" /></a><p><strong><em>Night</em> AGLOW.</strong><br /> Hinkley provides a collection of decorative and functional landscape lighting to help you complete your home\'s lighting plan. <a href="#" class="moreLink">More &gt;</a> <span class="hide">Whether you choose to highlight architectural features of your home, extend your living space by illuminating your landscaping, or accentuate an object of interest, we have the perfect fixture that will meet your lighting needs. Your imagination is your only limitation in lighting your landscape.  <a href="/products/families.aspx?cid=9">View our landscape products</a><br /><a href="#" class="lessLink">&lt; Hide</a></span></p>';
snippets[2] = '<h3 class="replaceThis">Fredrick Ramond</h3><a href="http://www.fredrickramond.com" target="_blank"><img src="/images/sidebar-frederick-ramond.gif" alt="Frederick Ramond" height="142" width="230" /></a><p>Part of the Hinkley family, Fredrick Ramond is a high end line of lighting that is synonymous with quality in the lighting industry and is known for innovative products and design. <a href="#" class="moreLink">More &gt;</a><span class="hide"> With unparalleled style, Fredrick Ramond offers lighting solutions for the most discerning client with extremely demanding needs. Perceived as art, our high style products are crafted to suit an array of sophisticated d&eacute;cor treatments. Fredrick Ramond can be your answer to the most critical interior design challenges. View the complete collection at <a href="http://www.fredrickramond.com" target="_blank">www.fredrickramond.com</a><br /><a href="#" class="lessLink">&lt; Hide</a></span></p>';
snippets[3] = '<h3 class="replaceThis">Eco-Options</h3><a href="/products/energy-saving.aspx"><img src="/images/sidebar-environmental-solutions.jpg" alt="Go Green With Hinkley Lighting" height="142" width="230" /></a><p>Hinkley offers a variety of options that allow you to design an outdoor lighting plan with the environment in mind, including Energy Saving, Dark Sky, and Energy Star qualified fixtures. <a href="/products/energy-saving.aspx">Read about our Eco-Options</a>';

function sidebar() {
	var snippet = Math.floor(Math.random()*4);
	return(snippets[snippet]);
}

function initSidebar() {
  $('.hide').hide();
  $('.moreLink').click(function() {
	$(this).hide();
	$(this).next().show(150);
	return false;
  })
  $('.lessLink').click(function() {
	$(this).parent().hide(150);
	$(this).parent().prev().show();
	return false;
  })
}

function reCarousel() {
	$('#familyCarousel ul').jcarousel({
		wrap:'circular',
		itemVisibleInCallback: {onBeforeAnimation: mycarousel_itemVisibleInCallback},
		itemVisibleOutCallback: {onAfterAnimation: mycarousel_itemVisibleOutCallback}
	  });
}