function imageload(galID,imgID) {
    new Ajax.Request('/_includes/gallery/detail.php', {
    	method: 'get',
    	parameters: {galID: galID, imgID:imgID, 'ajax':1},
    	onComplete:function(transport) {
    		$('gallery-view').replace(transport.responseText);
    		new Insertion.After('gallery-view', "<img src=\""+IVW+"?r="+escape(document.referrer)+"&d="+(Math.random()*100000)+"\" width=\"1\" height=\"0\" alt=\"szmtag\" />");
    		window.location.hash = '#'+imgID;
    	}
    });
	return false;
}

function hoverBewertung(sterne) {
	$('ratinglist').removeClassName($('ratinglist').readAttribute('class'));
	$('ratinglist').addClassName('stars-'+sterne);
}

function setRating(url) {
	new Ajax.Request(url+'&ajax=1',  {});
	if(Prototype.Browser.IE && !(document.all)) {
		$("ratinglist").hide();
	} else {
		$("ratinglist").update('<strong style="color:#fff;">Vielen Dank für Ihre Bewertung.</strong>');
		$("ratinglist").setStyle({'padding': '0'});
	}
	return false;
}
