$(document).ready(function(){	
	var stuff = ("we " + $('#sidebar .current_page_item a').text());
	$('#sidebar .current_page_item a').text(stuff);

});

$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute

	//Full Caption Sliding (Hidden to Visible)
	$('.main-portfolio .boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'194px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'294px'},{queue:false,duration:160});
	});
});
  $(document).ready(function(){
		$('.portfolio .boxgrid.captionfull').hover(function(){
			$(".cover", this).stop().animate({top:'112px'},{queue:false,duration:160});
		}, function() {
			$(".cover", this).stop().animate({top:'173px'},{queue:false,duration:160});
		});
		
	});
	
	  //var pathname = window.location.pathname.split('/')[1];
	//var host = window.location.host;
	//if(pathname.match(/^\/about/) || pathname == ""){
	//	$('#main-nav #frontpage a').addClass('active');
	//} else {
	//	$('#main-nav #'+ pathname +' a').addClass('active');
	//};
