jQuery(document).ready(function() {
	if (jQuery('#sidebar-right').get()[0]) {
		jQuery('body').addClass('sidebar-right');
	} else if (jQuery('#sidebar-left').get()[0]) {
		jQuery('body').addClass('sidebar-left');
	} else {
		jQuery('body').addClass('sidebar-none');
	}
	/* vm */
	if (jQuery('body#virtuemart').get()[0]) {
		jQuery('#jwts_tab').appendTo('#vmMainPage');
		var img = jQuery('#fp-product-image').find('img').eq(0);
		img.parent().html(img).removeAttr('href').removeAttr('onClick');
		if (jQuery('#product_id_field').length > 0) {
			jQuery('#fp-product-price').hide();
			jQuery('#fp-add-to-cart .vmCartDetails').after(jQuery('#product_id_field')).hide();
			jQuery('input.addtocart_button').insertAfter(jQuery('#product_id_field')).next().hide();
			jQuery('#product_id_field').find('option').eq(0).remove();
		} else {
			jQuery('input.addtocart_button').insertAfter(jQuery('#fp-add-to-cart .vmCartDetails')).next().hide();
		}
		jQuery('#fp-related-products').insertAfter('#vm-menu').find('li:odd').after('<br class="clear-float" />');
		jQuery('#fp-related-products').find('a').each(function() {
			jQuery(this).siblings('span').eq(0).wrapInner('<a></a>').children('a').attr({href:jQuery(this).attr('href')});
		});
	}
});



