$(function () {
	$(this).find('ul li:last-child').addClass('last');
	var tabContainers = $('div#tabs > div');
	tabContainers.hide().filter(':first').show();

	$('div#product ul#productTabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div#product ul#productTabs a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();
/*		
var msie6 = jQuery.browser == 'msie' && jQuery.browser.version < 7; if (!msie6) { var topPosition = jQuery('#productRightSide').offset().top - parseFloat(jQuery('#productRightSide').css('margin-top').replace(/auto/, 0)); jQuery(window).scroll(function() { var y = jQuery(this).scrollTop(); if (y >= topPosition) { jQuery('div#productRightSide').addClass('floatingSidebar'); } else { jQuery('div#productRightSide').removeClass('floatingSidebar'); } }); }
*/
});
