jQuery.noConflict();

jQuery(document).ready(function() {
        var url  = document.URL;
        var patt = new RegExp("www.kilkennytradtrail.net", "i");
        if(patt.test(url)){
           url = url.replace('www.kilkennytradtrail.net', 'kilkennytradtrail.net');
           document.location = url;
        }

    jQuery('a.ajax').click(function(){
        var href = jQuery(this).attr('href2');
		href = href.replace('.com', '.net');
		href = href.replace('www.', '');		
        href = href.replace('index.php', 'index2.php') + '&no_html=1';

        jQuery('#content1 form, #content1 .contentpaneopen, #content1 .contentpane, #content1 .gallery').parent().html('<img src="js/loading.gif">').load(href);
    });

});

