
$(function(){
	$('div#bufuback').livequery(function(){
		$(this).find('img.showthisonenow').removeClass('showthisonenow').css('display','none');
		$(this).append('<img class="clickme bufubacki showthisonenow png" src="/images/cycle/clickme.png" style="display:block" width="100%">')
		.parent().click(function(){
			$it = $(this).find('img.showthisonenow');
			if ($it.hasClass('clickme')) {
				location.href='/?p=637';
			}
			return false;
		}).hover(function(){
				$it = $(this).find('img.showthisonenow');
				if ($it.hasClass('clickme'))
					$(this).css("cursor", "pointer");
				else $(this).css("cursor", "default");
			}, function(){ $(this).css("cursor", "default");
		});
	});

});





