$(document).ready(function(){
	$('a.imageLink').hover(function(){
		$('#imagePopup').show();
	}, function(){
		$('#imagePopup').hide();
	});
});

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popup(url) {
	MM_openBrWindow(url,'popup','scrollbars=yes,resizable=yes,width=800,height=600')
}