// target blank window

/*window.onload=autoPOP;

function autoPOP(){
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++) {
		if (x[i].getAttribute('className') == 'blank' || x[i].getAttribute('class') == 'blank'){ x[i].target = '_blank'; }
	}
};*/

$( function () {
    $(".blank img").css("vertical-align","text-top");
    $('.blank').click(function(){
        window.open(this.href, '_blank');
        return false;
    });
});
