// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  return false;
}
function stopRKey(evt) { 
  var evt = (evt) ? evt : ((event) ? event : null); 
  var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); 
  if ((evt.keyCode == 13) && (node.type=="text"))  {return false;} 
} 

$(document).ready(function(){
	$('#print-link').hover(
		function() {
			$('#print-button').attr("src", "/img/print-black.gif");
			$('#print-link a').addClass("hover");
		}, 
		function () {
			$('#print-button').attr("src", "/img/print.gif");
			$('#print-link a').removeClass("hover");
		}
	);
});


