$(document).ready(function(){
	
	$(".projeto h2").click(function(){
		
		$(this).next("div").next("div.oculto").slideToggle();
		
		/*
		$div = $(this).parent("div");

		if($div.css("width") == "220px")
		{
			$(this).parent("div").animate({ 
			    width: "450px"
			}, 	500 );
		}
		else
		{
			$(this).parent("div").animate({ 
			    width: "220px"
			}, 500 );
		}
		*/
		
		if($(this).next("div").html() == "MAIS")
		{
			$(this).next("div").html("MENOS");
		}
		else
		{
			$(this).next("div").html("MAIS");
		}
	});
	
	$(".projeto h2").mouseover(function(){
		$(this).next("div").css("color", "#e77727");
	}).mouseout(function(){
		$(this).next("div").css("color", "#777");
	})
	
	$("#e-seven").click(function(){
		location.href = "http://www.eseven.com.br";
	});
	
});
