$(document).ready(function(){ 

    if( $('input[type=text]').lenght )
        $('input[type=text]').attr("autocomplete", "off").css('border',border);
    
    $("a.popup").click(function(event){
        window.open($(this).attr('href'));
        event.preventDefault();
    });

    $("a.fancybox").fancybox({
        titlePosition:'over'
    });
});

