$(document).ready(function(){
	/*
	summaryTop = $("#priceblock").position().top;
	containerTop = $("#priceblock").parent(0).position().top + $("#priceblock").parent(0).parent(0).position().top;
	
	var top = 0;
	var el =  $("#priceblock");
	while(el.parent(0).position().top > 0){
		if(el.css("position") == "relative"){
			top += el.parent(0).position().top;
		}
		el = el.parent(0);
	}
	containerTop = top;
	$(window).scroll(function () { 
		if($(document).scrollTop()>(summaryTop+containerTop)){
			offset = ($(document).scrollTop() - containerTop+5);
			$("#priceblock").animate({top:offset},{duration:500,queue:false});
		}else{
			offset=summaryTop;
			$("#priceblock").animate({top:offset},{duration:500,queue:false});
		}
	});
	
	initCloseMessages();*/
	
});
