$(window).load(function() {
    $(".thumbnails a").each(function () {
        $(this).click(function(){
		
            window.open(this.href,'large_img','width=530,height=500,scrollbars=yes');
            return false;
        });
    });
});
