// -------------------------------------
// MKTG MINI SUITE STATISTICS MOD
// creation date : 23/12/2010
// creator : NP
// -------------------------------------
$(document).ready(function(){
	$.ajax({
		type : "get",
		url : "/sniffer.php"
	});
	$("a").live('click', function(){
        link = $(this);
//        if (link.attr('id') != 'nostat')
//        {
            $.ajax({
                type : "get",
                async : false,
                url : "/sniffer.php",
                data : "action=click&element=link&value=" + $(this).attr('href'),
                success : function(){
//                    link.attr('id', 'nostat');
//                    link.attr('onclick', 'location=this.href; return false;');
//                    if (link.attr('target') == '_blank')
//                    {
//                        external=window.open(link.attr('href'),'external');
//                        external.focus();
//                    }
//                    else
//                        window.location = link.attr('href');

//                    console.log(link);
//                    link.click();
    //                console.log(link);
    //                return false;
//                    window.location = link.attr('href');
                }
            });
//            return(false);
//        }
	});
});
