// JavaScript Document
$(document).ready(function(){

    $('.rounded').corners();
	$('.wrapper').corners();
	
			//animate opacity of images
			$('.profileimage img').animate({"opacity": .25}, 500);						   
						   
			$(".rounded").hover(function() {
				$(this).css("background-color","#ffffff");
				$(this).find('.profileimage img').stop().animate({"opacity": 1}, 500);
				$(this).find('.profileimage img').css("border","3px solid #161616");
				$(this).find('p.name').css("color","#161616");
				$(this).find('p.company').css("color","#161616");
				
			}, function(){
						  $(this).css("background-color","#161616");
						  $(this).find('.profileimage img').stop().animate({"opacity": .25}, 500);
						  $(this).find('.profileimage img').css("border","3px solid #777777");
						  $(this).find('p.name').css("color","#707070");
						  $(this).find('p.company').css("color","#707070");
						 } 
			);	
			
			
			
			
							
	});


