$(document).ready(function(){
	
	$("div.text > span.biography").bind("click", function(e){
		
		if($(this).parent().find("p").is(":hidden")){
           
		   $(this).parent().find("p").slideDown("slow");
		   
		}else{
			
			$(this).parent().find("p").slideUp("slow");
			
		};
		if($(this).parent().find("ul").is(":hidden")){
           
		   $(this).parent().find("ul").slideDown("slow");
		   
		}else{
			
			$(this).parent().find("ul").slideUp("slow");
			
		};
		
			if($(this).parent().find("div").is(":hidden")){
          $(this).parent().find("div").slideDown("slow");
		   
		}else{
			
			$(this).parent().find("div").slideUp("slow");
			
		};
	
	});	
	
	$('#rotate').cycle({ 
		fx:'fade', 
		timeout: 2500
	});
	
	$('a[rel*=facebox]').facebox();
	
});

	
 $(document).ready(function(){
      $(".myill").css({"opacity": 0.5});
      $(".myill").hover(
        function () {
          $(this).animate({
            opacity: 1          
          }, {queue:false, duration: 200});
        }, 
        function () {
          $(this).animate({ 
            opacity: 0.5            
          }, {queue:false, duration: 200} );
        
		});
			});				
