/*
 * targetBlank 1.0 - windows opener with mootools 1.2
 * By Mario Zambon (http://www.urbangap.com)
 * Copyright (c) 2008 cody urbangap
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/

jQuery(document).ready(function($){
	$('a.blank').each(function(){
		$(this).click(function(){
			var href = $(this).attr('href')
			window.open(href)
			return false
		})
	})
})

