jQuery(document).ready(function(){

	jQuery('.expand').click(function() {
		jQuery(this).prev('.hide').animate({height:'toggle'}, 'fast');
		
		if (jQuery(this).html()=='Read more') {
			jQuery(this).html('Read less');
			jQuery(this).css('background-position','left bottom');
		}
		else {
			jQuery(this).html('Read more');
			jQuery(this).css('background-position','left top');
		}
		
		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(){
		
	});
	
});