
//Cufon.replace('#main-phone li, .menu-item a', { fontFamily: 'Frutiger LT Std' });



//START DOCUMENT READY
$(function(){

	$("#pikame").PikaChoose({showCaptions:false});
	$("#services li div").hide();
	$(".read-more").bind('click',function(){
		if($(this).text() == "Read More"){
			$(this).text('Hide This');
		}else{
			$(this).text('Read More');
		}
		$(this).parent().prev().slideToggle();
	});


//	END DOCUMENT READY					
});
