$(document).ready(function() {
	$('#slideshow').cycle({fx:'fade'});
});

$('#strategy_btn,#blog_btn,#locations_btn').mouseenter(function() {
  $(this).animate({
	opacity:1
  },300 );
});
$('#strategy_btn,#blog_btn,#locations_btn').mouseleave(function() {
  $(this).animate({
	opacity:0.5
  },300 );
});

// ABOUT
$('#about_btn,#about_link').mouseenter(function() {
  $("#about_bg").animate({
	opacity:1,
	width:"210px",
	height:"44px",
	marginTop:"-2px",
	marginRight:"-8px"
  },200 );
});
$('#about_btn').mouseleave(function() {
  $("#about_bg").animate({
	opacity:0.5,
	width:"194px",
	height:"40px",
	marginTop:"0px",
	marginRight:"0px"
  },200 );
});

// SEARCH
$('#search_btn,#search_link').mouseenter(function() {
  $("#search_bg").animate({
	opacity:1,
	width:"210px",
	height:"44px",
	marginTop:"-2px",
	marginRight:"-8px"
  },200 );
});
$('#search_btn').mouseleave(function() {
  $("#search_bg").animate({
	opacity:0.5,
	width:"194px",
	height:"40px",
	marginTop:"0px",
	marginRight:"0px"
  },200 );
});

// CLIENTS
$('#clients_btn,#clients_link').mouseenter(function() {
  $("#clients_bg").animate({
	opacity:1,
	width:"210px",
	height:"44px",
	marginTop:"-2px",
	marginRight:"-8px"
  },200 );
});
$('#clients_btn').mouseleave(function() {
  $("#clients_bg").animate({
	opacity:0.5,
	width:"194px",
	height:"40px",
	marginTop:"0px",
	marginRight:"0px"
  },200 );
});

// AREAS
$('#areas_btn,#areas_link').mouseenter(function() {
  $("#areas_bg").animate({
	opacity:1,
	width:"210px",
	height:"44px",
	marginTop:"-2px",
	marginRight:"-8px"
  },200 );
});
$('#areas_btn').mouseleave(function() {
  $("#areas_bg").animate({
	opacity:0.5,
	width:"194px",
	height:"40px",
	marginTop:"0px",
	marginRight:"0px"
  },200 );
});

