jQuery(document).ready(function(){	//BAND PICS FROM FLICKR		$('#jam_right_column').load('catalog/template/default/module/flickr.tpl');		var bandTag = $('#jam_product li h1:first').html();	var strip = bandTag.indexOf("-");	var term = bandTag.substr(0, strip);	    $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=" + term + "&tagmode=all&format=json&jsoncallback=?",        function(data){          $.each(data.items, function(i,item){            $("<img/>").attr("src", item.media.m).attr('width','150').appendTo("#flickr_loads");            if ( i == 3 ) return false;        });    });	});