// JavaScript Document
//<![CDATA[
    //change sites internal links to class "snap_nopreview"
 /*
 var links = document.getElementsByTagName('a');
    for (var l = 0; l < links.length; l++) {
		
if(links[l].href.match(/^schoolhistory\.co.uk/))
{
links[l].className += " snap_nopreview";
}
else if(links[l].href.match(/^http:\/\/www\.schoolhistory\.co.uk/))
{
links[l].className += " snap_nopreview";
}
else if(links[l].href.match(/^www\.schoolhistory\.co.uk/))
{
links[l].className += " snap_nopreview";
}		
  }
//]]>

*/