$(document).ready(function(){
	var classNames=['firstChild','secondChild','thirdChild'];
	$("ul.btmTabBar > li").each(function(i){
		var n=Math.abs(i);
		$(this).addClass(classNames[n]).removeAttr('onclick');
	});
	$("div.btmTab > div").each(function(i){
		var n=Math.abs(i);
		$(this).addClass(classNames[n]);
	});
	$(".btmTabLeftMainSection tr:not(:first-child) td img").addClass("prodImage");
	$('.secondChild .btmTabRight').remove().insertAfter('.secondChild .btmTabLeft');
	$('.firstChild .btmTabRight').remove().insertAfter('.firstChild .btmTabLeft');
});
