/**
* Opens hyperlinks in a new window
*
* Prerequisites: jquery.js
*
* How to use:
*   Give your hyperlink a class of 'blank'.
* 
* @author Sam Oakley
* @copyright Websell Masters Ltd
*/

$(".blank").ready(function(){
	$(".blank").click(function(){
			window.open($(this).attr("href"));
			return false;
	});
});