/*
script desenvolvido para o site www.lopesesoares.com.br
[mee]design . 2010 . lucas m & eric e
contato@meedesign.com.br
*/

$(document).ready(function(){


//animacao do menu
$('.menu_BT').hover(
			function() {
				switch(this.id){
					case "menu_perfil":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"85px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
					case "menu_socios":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"170px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
					case "menu_atuacao":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"157px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
					case "menu_localizacao":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"125px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
					case "menu_atendimento":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"117px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
					case "menu_informativos":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"115px",
							backgroundColor:"#FFFFFF"
						}, 1000);
						break;
				}
			},
			function() {
				switch(this.id){
					case "menu_perfil":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
					case "menu_socios":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
					case "menu_atuacao":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
					case "menu_localizacao":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
					case "menu_atendimento":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
					case "menu_informativos":
						$(this).children('.line').not('#line_active').stop()
						.animate( {
							width:"0",
							backgroundColor:"#00704A"
						}, 1000);
						break;
				}
			}
		);



});
