$(document).ready(
	function()
	{
		var adRightWidth='201';
		var adRightHeight='116';		
		var adRightBottom='126px';
		var this_img='http://cbanners.virtuagirlhd.com/customdata/banner/FloatingAds/vghd_msn_01.gif';
		//var this_img='http://dev.virtuagirlhd.com/customdata/banner/vghd_msn.gif';

		$("body").prepend("<div id=\"vhd_FloatingAd_02\" style='position:fixed;bottom:-"+adRightHeight+"px;right:10px;height:"+adRightHeight+"px;width:"+adRightWidth+"px;z-index:1000;'><a href='http://c.actiondesk.com/?s="+ids+"&p=21&pp=1' target='_blank'><img src=\""+this_img+"\" width=\""+adRightWidth+"\" height=\""+adRightHeight+"\" border=\"0\" name=\"img_vhd_FloatingAd_02\" /></a> <a href=\"javascript:void(0);\" name=\"a_vhd_FloatingAd_02\" style=\"position:absolute;top:0px;right:0px;width:22px;height:22px;background-image:url('"+this_img+"');background-position:top right;\"></a></div>");
		
		var display=true;
		$('img[name=img_vhd_FloatingAd_02]').load(function()
		{
			if(display)
			{
				$("div[id=vhd_FloatingAd_02]").animate({"bottom": "+="+adRightBottom}, "slow");
				$("a[name=a_vhd_FloatingAd_02]").click(function()
				{
					$("div[id=vhd_FloatingAd_02]").animate({"bottom": "-="+adRightBottom}, "high");
				});
			}
			display=false;
		});
	}
);