$(document).ready(function(){
	
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 8000
	});
	
// -------------- Add Class to 4th item on the Case Studies page ---------------------
	
    $('div.navigationGrid div.navigation:nth-child(4n)')
    .addClass('rowEnd').show();	


// -------------- Add Class for Alternating table rows on Porduct spec page ---------------------
	 
	 $("table.tech_spec_table tr:odd").addClass("alt");


// -------------- Tabs on Porduct spec page ---------------------

	$("#tabs").tabs({
		selected: 0
	});	
	
	
	
});
