﻿function show_bask_content_fix(){
	$.post("/cgi-bin/dsp.pl", { cl: "order", event: "show_bask_content_fix", rnd: Math.random(), utf8: 1 }, 
	function(data) {
		var basket_move_selector = $('<div class="fixied_block basket_png"><div class="rel"><div class="bask_content_fix"></div><a href="/cgi-bin/dsp.pl?cl=order&amp;event=show_basket"><img src="/images/p-null.gif" width="196" height="75" alt=""></a></div></div>')
			if(data == ''){
			basket_move_selector.remove();
		}
		else{
			basket_move_selector.appendTo('body');
			$('.bask_content_fix').html(data);
		}
	});	
}

$(document).ready(function() {
	show_bask_content_fix();
});
