 $(document).ready(function(){
   $.ajaxSetup({cache: false});

   // scroll to top
   $('a.forum_breaklink').click(function(){
   $.scrollTo( 0, 500);
     return false;
   });

   $("#forum_main a").click(function(event){
    if (($(this).attr("target").length==0) && ($(this).attr("id")!='noscript')) {
       if (($(this).attr("href").length>0) && ($(this).attr("id")!='gimg')) {
          $.get($(this).attr("href") , { menu: "none", widget: "none" }, function(data) {
             $('#sub_page').html(data);
          });
       }

        event.preventDefault();
    } // if no target
   });



 });


