tb_pathToImage = "http://www.hamag.nl/images/loading-thickbox.gif";
$(document).ready(function() {
   // do stuff when DOM is ready

   $("#search").click(function() {
		$("#searchform").submit();
   });

   $(".pics").cycle({
		fx:    'fade',
    	speed:  2500
	 });

	$(".content").css(function() {
		$(".content").height($(".pics").height);
	});

 });


function lastform() {
	var query = "";
	last_form = document.forms.lastfmForm;

	if(last_form.music.value.length == 0) {
		alert("Vul eerst een artiest of stijl in om een nummer te luisteren.");
	} else {
		query = last_form.music.value;
		site = "http://www.last.fm/webclient/popup/?radioURL=lastfm%3A%2F%2Fartist%2F"+query+"%2Fsimilarartists&resourceID=undefined&resourceType=undefined";
		window.open(site, 'LastFM', "toolbar=no,location=no,resizable=no,status=no,scrollbars=no,menubar=no,width=360,height=200,top=1,left=1");
	}
}
