$(document).ready(function(){

	$("#home img").click(function(){
		var url = $(this).attr("src");
		window.open(url);
	});
});
