// contact slide
$(document).ready(function () {
	$("div#menu_body li:even").addClass("alt");
    $('a.menu_head').click(function () {
	$('div#menu_body').slideToggle('fast');
    });
    $('img.close').click(function () {
	$('div#menu_body').slideToggle('fast');
    });
	$('div#menu_body a').mouseover(function () {
	$(this).animate({ fontSize: "12px", color: "#ff1219" }, 20 );
    });
	$('div#menu_body a').mouseout(function () {
	$(this).animate({ fontSize: "12px", color: "#ff1219" }, 20 );
    });
});

//Clients
$(document).ready(function() {
	$("ul.gallery li").hover(function() { //On hover...
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'
		//Set a background image(thumbOver) on the &lt;a&gt; tag 
		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("span").stop().fadeTo('normal', 0 , function() {
			$(this).hide() //Hide the image after fade
		}); 
	} , function() { //on hover out...
		$(this).find("span").stop().fadeTo('normal', 1).show();
	});
});

//caption boxes
$(document).ready(function(){
				$('.boxgrid.captionfull').hover(function(){
					$(".cover", this).stop().animate({top:'129px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'165px'},{queue:false,duration:160});
				});
});


//contact tab


//careers accordian



