// preload images first (can run before page is fully loaded)
// $.preloadImages("ok_on.gif", "cancel_on.gif");
$(
	function()
	{
		// set up rollover
		$("ul.rollover img").hover(
			function()
			{
				this.src = this.src.replace("/off/","/on/");
			},
			function()
			{
				this.src = this.src.replace("/on/","/off/");
			}
		);
	}
)

function release_filter(type, name_normalised){

	window.location.href = base_url + "shop/music/" + type + "/" + name_normalised + "/";
}

