    $(document).ready(function(){
    	$("#nav em").hide();
    	$('.abouttext h2').nextAll().hide();

    	$('.abouttext h2').append("<span class='addedtext'>read more</span>");
    	
    	$("#nav a").hover(function() {
    		
		  	$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
		  $(this)..clearQueue()
		}, function() {
			
		  $(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
		  ;
		});
        
        $('.about a').click(function() {
          $('.abouttext h2').nextAll().slideDown('fast');
          $(".abouttext h2 .addedtext").remove();
        });
	
		$('.abouttext h2').toggle(function() {
		  $('.abouttext h2').nextAll().slideDown('fast');
		  $(".addedtext").remove();
		}, function() {
		  $('.abouttext h2').nextAll().slideUp('fast');
		  $('.abouttext h2').append("<span class='addedtext'>read more</span>");
		});
		
		/*$('.showcase').cycle({
	        fx:     'scrollRight', 
	        speed:    'fast',
	        timeout:  4600
		});*/

	});
