var _v = 0;
var _v2 = 1;

function ajax_update()
{
	var wrapperId 	=	'#featured';
	var postFile	=	'feature.php';
	_v++;
	 _v2++;
	$.post(postFile, { v2: _v2 , v: _v}, function(data){
		$(wrapperId).fadeOut("slow",function(){
			$(this).html(data).fadeIn("slow");}).html();
			$(this).css("filter", "");
		}
	);
	setTimeout('ajax_update()', 15000);

}
