














/* <![CDATA[ */
// content of your Javascript goes here
jQuery.noConflict();
(function($) { 
  $(function() {
    // more code using $ as alias to jQuery
// initialize


    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });


$('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

  });

})(jQuery);
// other code using $ as an alias to the other library
// Code that uses other library's $ can follow here.




	/* ]]> */
