function show(div) {
	if (div.style.display == 'none') {
		div.style.display = 'block';
	} else {
		div.style.display = 'none';
	}
}

var menu=new function(){

    this.show_menu=function(menu){

             switch (menu){
                   case 'about':
                   $('#brands').add('#catalog_arrow').css('display','none');
                   break;
                   
                   case 'coords':
                   $('#brands').add('#catalog_arrow').css('display','none');
                   break;
                   
                   case 'catalog':
                    $('#catalog').css({'color':'orange','cursor':'pointer'});
                    $('#catalog_arrow').css('display','inline');
                    $('#brands').css('display','block');
                    $('#brands').mouseleave(function(){$('#brands').add('#catalog_arrow').css('display','none');});
                   break;
                   
                   case 'blog':
                   $('#brands').add('#catalog_arrow').css('display','none');
                   break;
             }

    }
    
    this.setCol=function(id){
        $('#'+id).toggleClass('orange_romb');
    }
    
}

function getNews(id){
    
    $('.01').add('.02').add('.03').add('.04').add('.05').add('.06').add('.07').add('.08').add('.09').add('.10').add('.11').add('.12').css('display','none');
    $('.'+id).css('display','block');
    $('#01').add('#02').add('#03').add('#04').add('#05').add('#06').add('#07').add('#08').add('#09').add('#10').add('#11').add('#12').removeClass('orange');
    $('#'+id).addClass('orange');

}

function getBlogs(id){
    
    $('.01').add('.02').add('.03').add('.04').add('.05').add('.06').add('.07').add('.08').add('.09').add('.10').add('.11').add('.12').css('display','none');
    $('.'+id).css('display','block');
    $('#01').add('#02').add('#03').add('#04').add('#05').add('#06').add('#07').add('#08').add('#09').add('#10').add('#11').add('#12').removeClass('orange');
    $('#'+id).addClass('orange');
    show_blog_im.reinit(id);
    
}


