$.extend({
	playMp3 : function(mp3, autostart) {
		var html = '<embed type="application/x-shockwave-flash"'
			 + ' pluginspage="http://www.macromedia.com/go/getflashplayer"'
			 + ' src="' + IMG_URL + 'mp3player.swf?autostart=' + autostart + '&autoreplay=1&son=' + mp3 + '&amp;&amp;"'
			 + ' width="185" height="20" />';
		 document.write(html);
	}
});

$(function(){
	$('#photos ul').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '160px'
	});
});