var $j = jQuery.noConflict();
$j(function() {
		$j('.mail_page').bind("click", function mail_page()	{
			var body_text = "You may find this page on the website of 7 New Square Barristers of interest - ";
			var mail_content = "mailto:?subject= " + document.title;
			mail_content += "&body= " + body_text + " ";
			mail_content += " " + location.href; 
			location.href = mail_content;
		});
		$j('.print_page').bind("click", function mail_page()	{
			// note - javascript get around because php get doesn't get anything after a # - eg #cases
			var subsection = "";
			var current_url = location.href;
			var hash_pos = current_url.indexOf("#");
			if (hash_pos != -1){
				subsection = "&subsection="+current_url.substring(hash_pos+1);
				current_url = current_url.substring(0,hash_pos);
			}
			window.open('http://www.interactive-teaching.co.uk/print_page.php?url=' + current_url + subsection, 'detailprint','width=600,menubar=no,toolbar=no,scrollbars=yes',true);
		});
});
