$(document).ready(function(){
	$(function(){
	  $("#tabs").tabs({
	    fxFade: true,
		fxSpeed: 'slow'
	});
	});
	
 $("#tabs").tabs("rotate", 3000, false);

 
$("a[rel='anch-cart']").click(function(){
$.get($(this).attr('href'));
refresh_cart();
$(this).attr('href','index.php?shopping_cart=yes'); 
$(this).html('корзина'); 
$(this).unbind('click');
$(this).removeClass("but_o").addClass("but_v");
return false;
});	
	
});	
