// JavaScript Document
document.documentElement.className += " js"

$(document).ready(function() {



$('.anipic').hover(function(){

if ($(this).parent().position().left <= 700){
$(this).siblings('.bio').css({ 'height':$(this).height()+2,left:$(this).parent().width()});

}

else {

$(this).siblings('.bio').css({ 'height':$(this).height()+2,right:$(this).parent().width()});
}


//$(this).find('img').animate({opacity: 1.0 },2000);

$(this).css({'background-color':'#55CADF'});


$(this).siblings('.bio').animate({width: '+=160px'},{easing:'swing', complete:function(){ $('.biotext').fadeIn();}});


							  




//endmouseover
}


,function(){
								 
$(this).css({'background-color':'#ffffff'});

$(this).siblings('.bio').stop().hide().css({'width':'0px'})
$('.bio').hide();
$('.biotext').hide();
//$('.imgopac').stop().css({opacity: 0.8 });
								 
								 })
//end


								  
					


	
//enddocumentready
});
