/**
 * @author adam
 */

$(document).ready(function() {
	
	$('select[name=ord]').change(function() {
		
		var load = "<h1 class=\"loadingTxt\">Sorting Products...<br /><br /><img src=\""+ROOT+"/images/load.gif\" alt=\"Loading...\" /></h1>";
		
		var ord = $(this).val();
		
		if(BRANDS == true) {
			$('#products_result').html(load).load("/includes/sortbrand.ajax.php", {order : ord, id : ID, sid : SID, microID : microID});
		} else {
			$('#products_result').html(load).load("/includes/sort.ajax.php", {order : ord, id : ID, sid : SID});
		}
	});
	
});
