var Cataloger = {	
	wys : null,
	init : function(){	
		//быстрый переход между площадками
		MSDropDown.init("#site-select");		
	},
	changeSite : function(){
		document.location = '/shop.php?vendorid='+$('#site-select').val();
	}
	
}


$(document).ready(function(){ 	
 	Cataloger.init();
});