$(function(){
	//switchFeatureLi();
	//$('<small><a style="float:right;" href="/getinvolved/distribute-magazines/">Become a stockist</a></small>').appendTo('#feature-widget #linkcat-7 h3');
	//$('.lightbox a').lightBox({});
	$("a[rel^='prettyPhoto']").prettyPhoto();
});

function switchFeatureLi()
{
	$('#feature-widget ul').each(function(){
		$(this).find('li').each(function(){
			$(this).hide();
		});
		$(this).find('li:last-child').show().animate({height:0,opacity:0},500);
		$(this).find('li:first-child').css({height:'auto',opacity:1}).appendTo($(this)).show(500);
	});
	setTimeout('switchFeatureLi()',2000);
}
