jQuery(document).ready(function(){
function switchUp(){
	if(jQuery('#banner-slider').next().is('img'))
	jQuery('#banner-slider').fadeOut(function(){
	jQuery(this).removeAttr('id').next().attr('id','banner-slider').fadeIn('slow');
	});
	else jQuery('#banner-slider').fadeOut(function(){
		jQuery(this).removeAttr('id').siblings().first().attr('id','banner-slider').fadeIn('slow');
		});
}
jQuery.post(location.protocol+'//'+location.hostname+'/wp-content/themes/excess_energy/slider.php',function(data){
		if(data.match(/<img/)){
			jQuery('.slider').html(data);
			window.setInterval(switchUp,4000);
		}
	});
});
