var submitTimer;

function initgallery() {
	$('a').each(function() {
		if (this.getAttribute('href') && (this.getAttribute('rel') == 'slide')){
			this.onmouseover = function () {
				$("#slideimg").toggle();
				$("#slideimg").html('<img src="'+this.href+'" alt="'+this.getAttribute("title")+'" title="'+this.getAttribute("title")+'" />');
				clearTimeout(submitTimer);
				submitTimer = setTimeout("$('#slideimg').show('fast')", 1000);
				return false;
			}
		}
	});
}	
