var url = 'http://'+window.location.hostname;
var loadUrl = 'http://packagingproducts.paklink.co.nz';

$(function () {
			
	$.ajaxSetup ({
   		cache: false
	});
	
	$('a').bind("click", function(e) {
		$(this).blur();
	});
	
	$('#banner').cycle({ 
		fx: 'fade',
		speed:  3000,
		timeout: 6000,
		random:  1
	});
	
	
	
	if ($('body#home').length > 0) { 
		var indexLoading = '<div class="indexLoading"><img src="/css/contimg/loading333.gif" alt="loading" /><span>Loading catalogue index<br />Please wait</span></div>';
		$('#index').empty().html(indexLoading);
		$('#index').load(url+'/scripts/getindex.php?url='+loadUrl+'&element=categoryIndex','',indexLinksM);
	}
	
	function indexLinksM() {
		$('#categoryIndex ul').prepend('<li id="indexIndex"><a href="/n8,2.html" title="Product A-Z Index">Product A-Z Index</a></li>');
		$('#categoryIndex a').each( function() {
			var oHref = $(this).attr('href').replace(url,'');
			var pHref = oHref.replace('/products.php','');
			$(this).attr('href', '/products.php'+pHref);
		});
	}
	
});