$(document).ready(function() {
	var iCategoryID = $("select#search-category").val();
	var iSubcategoryID = $("input#last-manufacturer").val();
	$(".brand").hide();
	$(".loading-ajax#brand").show();
	$.get("ajaxGetManufacturer.asp", { iCategoryID: iCategoryID, iSubcategoryID : iSubcategoryID }, ajaxGetManufacturer);

	$("div#top-cat-container").click(function(event){
		if($(event.target).is("select") || $(event.target).is("option"))
		{		
			var iCategoryID = $("select#search-category").val();
			$(".brand").hide();
			$(".loading-ajax#brand").show();
			$.get("ajaxGetManufacturer.asp", { iCategoryID: iCategoryID }, ajaxGetManufacturer);
		}
	});

	//ajax call to display content in the div
	function ajaxGetManufacturer(html) {
		//insert html from ajax page
		$(".brand").html(html);
		//show new content, hide loading icon
		$(".brand").show();
		$(".loading-ajax#brand").hide();
	}
});
