/* Custom C-Dat Scripts  */

//Expand Collapse News 

$(document).ready(function(){
   $("table.specs tr > th").next("td").toggle(function(){
	$(this).removeClass("clickable").addClass("activetd");
	  $(this).parents("tbody").next("tbody.expandable").show();
	  },function(){
		   $(this).parents("tbody").next("tbody.expandable").hide();
		   $(this).removeClass("activetd").addClass("clickable");
	  });
	  
	// Initialize Gallery
	
	$("#slideshowContainer").tabs({fx: { opacity: 'toggle',duration: 400 } }).tabs('rotate', 8000);
	
	// Initialize Tabs
	$("#leftcontent").tabs();
	
   });