$(document).ready(function() {
	init();
});

function init(){
	$('.gallery_entry').click(function(){
        window.open($(this).attr('href'), $(this).attr('title'), $(this).attr('rel'));
        return false;
        
    });

	$('.gallery_entry:first').css('display','block');
}


