// ------------------------------------
// author:    Dariusz Pobożniak
// website:   http://pobobzniak.pl
// jQuery custom script
//-------------------------------------

$(function(){
// fix for target=”_blank”
    $('a[href^="http://"]')	.attr({ target: "_blank" });
});

/*$(document).ready(function(){
    $("a[@href^='http']").attr('target','_blank');
});*/


