jQuery(document).ready(function(){

	jQuery('.expand').click(function() {
		jQuery(this).prev('.hide').animate({height:'toggle'}, 'fast');
		
		if (jQuery(this).html()=='View project details') {
			jQuery(this).html('^ Close project details');
			
		}
		else {
			jQuery(this).html('View project details');
			
		}
		
		return false;
	});
	
	jQuery('.service-link').hover(function() {
		jQuery('.details').css('display','none');
		jQuery('.service-link').removeClass("activated");
		jQuery(this).addClass("activated");
		jQuery(this).next().show();
		
	},function(){
		
	});
	
});