// JavaScript Document

jQuery(document).ready(function(){
	$('img').bind('contextmenu', function(e){
		return false;
	});

	$("a[@href^=http]").each(
		function(){
			if(this.href.indexOf(location.hostname) == -1) { 
			$(this).attr('target', '_blank');
		}
	});
});

