$(document).ready( function() {
	setUp();
	reformatBreadcrumbs();	
	//product page specifics
	productpage();	
	$('body').show();
});

function productpage(){
	$("img[src$='/themes/iwsclassic/variations/blue/images/1.gif']").parent("td[width='16']").hide();	
	$('.breadcrumbtrail').parent().parent().attr('id','product');
    
	$('img.variant:first').parent().parent().parent().parent().attr('id','variant').parent().attr('id','variant-cell');
	$('.wba_zoom_btn').parent().parent().parent().attr('id','mhl-buttons');
	$('#sku').parent().attr('id','product-details');
    
    i=1;
	$('#product').children().children().each( function(){
		$(this).attr('id','product-row-' + i);
		if ($(this).text() == "" || $(this).text().match(/^\s$/)) $(this).remove();
		i++;
	});
	
	$('#description').parent().attr('id','description_text');
	$('#product-details').parent().parent().parent().parent().parent().attr('id','mhl');
	$('span.t a.w').parent().parent().parent().attr('id',"cus_reviews");
	$('#productDetails_1').parent().parent().attr('id','details_text');
	$('#features').parent().attr('id','features_text');

	//$('#product-row-16').attr('id',"recently_viewed");

	//$('#product').children().children('tr:eq(2)').remove();
	//$('#breadcrumbs').parent().remove();
	//$('#product td.bgl').parent().remove();
	
	$('#description_text,#features_text,#details_text,#cus_reviews').children("td").addClass('copytext');
    $('#mhl').children("td").addClass('copytext');
	
	$('#content-2 a.rw').children('img').css('position','relative').css('top','1px');
	$('#content-2 table:eq(1)').attr('id','recently-viewed');
	$('#recently-viewed table').addClass("recently-viewed-product");
	$('#recently-viewed td.gg').remove();
	
	$('#description').wrapInner("<div id='description-wrapper'></div>");
	$(".wba_email_btn").parent().replaceWith($('#content-3').show());
	
	$("#Offers, #offerTabs").parent().parent().remove();
}