// JavaScript Document
var href=window.location.href;
if (href.indexOf('&stock=1') != -1) {
	$('.tblShapeFilter a').each(function() {
		$(this).attr({
			'href' : $(this).attr('href') + '&stock=1'
		});
	});
}