// ================================
//    Stripe Tables
// ================================
function stripeTables(){
	
	$("tr:nth-child(odd)").addClass("odd");	
	$("td:last-child").addClass("noRightBorder");
	$("tr:first-child td").addClass("noTopBorder");
};

// ================================
//    Align Table Text
// ================================
function alignTableText(){
	$("tr td:first-child").addClass("leftAlign");
}

// ================================
//    Product Tour swf
// ================================
/*function productTour() {
		var flashvars = {
			xmlPath: "/_ui/skin/swf/product_tour/_xml/product-tour.xml",
			thumbPath: "/_ui/skin/swf/product_tour/_images/_thumbs/",
			largeImagePath: "/_ui/skin/swf/product_tour/_images/_larges/",
			videoSkinPath:"/_ui/skin/swf/product_tour/_videoSkin/"
		};
		var params = {};
		var attributes = {};
		swfobject.embedSWF("/_ui/skin/swf/product_tour/tour_eclipse.swf", "productTourFlash", "892", "500", "9.0.124.0","/_ui/skin/swf/expressInstall.swf", flashvars, params, attributes);
}
*/



// ================================
//    Start it up
// ================================
  
$(document).ready(function() {
	//stripe tables
	stripeTables();
	
	//align table text
	alignTableText();
	
	//load product tour swf
	//productTour();
});
