$(document).ready(function(){
	$('.spotifier').each(function(){
		$(this).hide();
		var track = $(this).html(); // what are we looking for?
		track = track.replace(/ - /, '_').replace(/ /g, '_'); // make nice
		$(this).load('php/spotifier.php?q='+track); // spotify this stuff
		$(this).show();
	});
});