$(document).ready(function() {
	$(".technologies span").click(function(){
		$(".technologies ul ul").slideUp();
		$(".technologies span").css("font-weight", "normal");
		if($(this).next().css("display") == "none"){
			$(this).next().hide().slideDown();
			$(this).css("font-weight", "bold");
		} else {
			$(this).next().slideUp();
			$(this).css("font-weight", "normal");
		}
	});
	$("#main-menu li a").textShadow();
	$(".read-more").click(function(){
		if ($(this).hasClass("read-more-o")){
			/*$(this).animate({width: "125"}, "fast");*/
			$(this).removeClass("read-more-o");
			$(this).next().slideUp();
		} else {
			$(this).animate({width: "595"}, "fast");
			$(this).addClass("read-more-o");
			$(this).next().slideDown();
			

		}
	});
});
