/*

WE SHAPE

FRONTEND by LEO FAVRE
http://leofavre.com/

BACKEND by BONACODE
http://bonacode.com/

DESIGN by WE SHAPE
http://weshape.com.br/

*/

function menuSwap(){
	var menu_top_width = ( $("body").hasClass("language-pt") ) ? 308 : 278;
	var menu_middle_width = ( $("body").hasClass("language-pt") ) ? 114 : 114;
	var menu_bottom_width = ( $("body").hasClass("language-pt") ) ? 108 : 108;
	var projeto_height = $("#projetos").height();
	
	if( $(".canvas-fixed .menu-top, .canvas-fixed .menu-middle, .canvas-fixed .menu-bottom").hasClass("closed") ){
		menuShow( menu_top_width, menu_middle_width, menu_bottom_width );
	} else {
		menuAllHide( projeto_height );
	}
}

function menuShow( menu_top_width, menu_middle_width, menu_bottom_width ){
	$(".canvas-fixed .menu-top").animate({
		width: menu_top_width
	}, 350, function() {
		$(".canvas-fixed .menu-top").removeClass("closed");
	});
	
	$(".canvas-fixed .menu-middle").animate({
		width: menu_middle_width
	}, 350, function() {
		$(".canvas-fixed .menu-middle").removeClass("closed");
	});
	
	$(".canvas-fixed .menu-bottom").animate({
		width: menu_bottom_width
	}, 350, function() {
		$(".canvas-fixed .menu-bottom").removeClass("closed");
	});
}

function menuHide(){
	$(".canvas-fixed .menu-top, .canvas-fixed .menu-middle, .canvas-fixed .menu-bottom").animate({
		width: '50'
	}, 350, function() {
		$(" .canvas-fixed.menu-top, .canvas-fixed .menu-middle, .canvas-fixed .menu-bottom").addClass("closed");
	});
}
