//<![CDATA[
var qpMoreTimer=null;
jQuery("#offerLinkMore").click
(
		function()
		{
			jQuery("#By_size_1").css("visibility","hidden");
			var qpPos=$('#offerLinkMore').position();
			$('#postNewOffer').css
			(
				{'width':$('#offerLinkMore').innerWidth()+'px','left':(qpPos.left)+'px','top':(qpPos.top)+'px'}
			).show();
		}
)
;

jQuery("#closeOffer").click(
		function()
		{
			clearTimeout(qpMoreTimer);
			qpMoreTimer=setTimeout
			(
				function()
				{
					jQuery("#postNewOffer").hide();
				},200
			)
			qpMoreTimer=setTimeout
			(
				function()
				{
					jQuery("#By_size_1").css("visibility","visible");
				},200
			)
		}
);
var radio = document.getElementsByName('postOffer');
for(var i=0; i<radio.length;i++){
	radio[i].onclick=function(){
		this.checked=true;
		window.open(this.value);
	}
}
//]]>

