$(function(){
    $('#pic').fadeIn();
	$('#pic img:gt(0)').hide();
	setInterval(function(){$('#pic :first-child').fadeOut(2000).next('img').fadeIn(2000).end().appendTo('#pic');},4000);
	var loc = window.location.toString().split("/")
    loc = loc[loc.length - 1]
    $("#sidebar a[href=\""+loc+"\"]").parent().addClass("selected");
	$('a[href^=http://]').attr('target', '_blank');	 
});
