$(document).ready(function(){
	// add new window class to all links within the flickr badge
   $(".flickrbadge > a").addClass("new-window");
 });

$(function(){
	// make links with a 'new window' class open in, er, a new window :)
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});