			    //Функция запроса
				var http_post = createRequestObject();
				function get_br(uri, post) {

				  http_post.open('POST', uri, true);
				  http_post.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
				  http_post.onreadystatechange = brand_func;
				  http_post.send(post);
				}

				function brand_func() {

				     if(http_post.readyState == 4){
				        var response = http_post.responseText;
                         //alert(response);
                         //return;
				        if(response.indexOf(';' != -1)) {

				        	txt = response.split(';');

				        	var prevButton=txt[0] ? txt[0] : ' ';
				        	var nextButton=txt[1] ? txt[1] : ' ';
				        	var brandList=txt[2] ? txt[2] : ' ';
                         if (brandList !== ' ') {
				        	if (IE) {
				        	    //getByID("prevbutton").attachEvent('onclick', function (a) {prevButton;});
				            	//getByID("nextbutton").attachEvent('onclick', function (a) {nextButton;});
				            	getByID("snextbutton").innerHTML = '<img id="nextbutton" style="float: right; cursor: pointer; height: 60px; width: 11px" OnClick="'+nextButton+'"  src="/img/arr_right.gif" width="11" height="60" alt="&raquo;" border="0" align="absmiddle">';
       	 						getByID("sprevbutton").innerHTML = '<img id="prevbutton"  style="float: left; cursor: pointer; height: 60px; width: 11px" OnClick="'+prevButton+'"  src="/img/arr_left.gif" width="11" height="60" alt="&laquo;" border="0" align="absmiddle">';

				        	}
				        	else {
				        		getByID("prevbutton").setAttribute("OnClick", prevButton);
				            	getByID("nextbutton").setAttribute("OnClick", nextButton);
				            }

				            getByID("menu_span").innerHTML=brandList;
                            $('ul.jcarousel-skin-tango li').Zoomer({speedView:200,speedRemove:400,altAnim:false,speedTitle:400,debug:false});

				         }

				        }

					}

				}

				function get_brands(next) {
					 	//Формирование элементов GET
				        var uri="/js/get_brand.php?get=" + next;
				        getByID("menu_span").innerHTML=  '<li style="width: auto" align="center"><img src="/img/loadingAnimation.gif" style="width: 208px; height: 13px; margin-left: 400px; margin-top: 25px;" width="208" height="13" alt="... загружается ..." border="0" align="absmiddle"></li>'
						get_br(uri,false);

				}
