$(document).ready(function(){

	bindEquipmentPaging();
	bindBenchBehaviour(false);


});


function bindEquipmentPaging() {
	$('#manufacturerItems .ajaxPagingLink').each( function() {
		var thisLink = this.href;
		$(this).attr("name",thisLink);
		$(this).attr("href","javascript:void(0);");
		$(this).click( function() {
			var thisAjaxLinkArr = $(this).attr("name").split("?");
			var thisAjaxLink = thisAjaxLinkArr[1];
			
			thisAjaxLink = thisAjaxLink.replace("manufacturer.view/","manufacturer.manufacturerItems/");
			$.ajax({
					type: "post",
					url: "/?" + thisAjaxLink,
					contentType: "application/x-www-form-urlencoded; charset=UTF-8",
					data: '',
					dataType: "html",
					async: false,
					complete: function(msg) {
						var thisText = msg.responseText.split("</td></td>");
						thisText = thisText[0];
						$('#manufacturerItems').html(thisText);
						bindEquipmentPaging();
					}
				});
			 });
		 });
 }
