       $(document).ready(function(){
        	if ($.browser.msie)
        	{
        		$('body').css('height', '1340px');
        		$('body').css('width', '98%');
        	}
				$('.add_basket').click(function(){
					$('#basket').load('/basket.html?catalog_basket_additemid='+$(this).attr('rel')+' #basket .update', 
					function(){
						alert('Товар успешно добавлен в корзину');
					});
					return false;
				});

				var total_price = $('#total_price')
				var delivery = $('#delivery')
				var cost_delivery = $('#delivery')
				if (parseInt(total_price.text()) > 3000) {
					delivery.text(0)
					cost_delivery.val(0)
				} else {  
					delivery.text(300)
					cost_delivery.val(300)
				}
        });
        function setHeight()
        {
        	if ($.browser.msie)
        	{

        		//if ($('body').height() >= $(document).height())
        		//{
        			$('body').height($('#div0').height());
        		//}
        		//else
        		//	$('body').height($(document).height());
            }

            var height = $('.center-side').height();

        	if (height < $('.right-side').height())
        		height = $('.right-side').height();

        	if (height < $('.left-side').height())
        		height = $('.left-side').height();


        	$('.right-side-right').height(height);
        	$('.right-side').height(height);
        	$('.left-side').height(height);
        	$('.center-side').height(height);
        }
