$(document).ready(
	function(){

		$("img").lazyload({
				placeholder : "/images/interface/blank.gif",
				effect : "fadeIn",
				threshold:200
   			 });
   	

		$("a[rel$='external']").click(function(){
     		this.target = "_blank";
		});

    });

