$(document).ready(function(){

	/* CLIENT ROLLOVERS */
	$('.client, .thumb').each(function(){
	
		var static = $(this).find('.static');
		var rollover = $(this).find('.rollover');
		var parent = $(this);
		
		static.mouseenter(function(){
			
			static.stop().fadeTo('fast', 0);
		});
		
		static.mouseleave(function(){
		
			static.stop().fadeTo('fast', 1);

		});
	
	});
	
	$('.medium').each(function(){
	
		var static = $(this).find('.static');
		var rollover = $(this).find('.rollover');
		var parent = $(this);
		
		static.mouseenter(function(){
			
			if($.browser.msie){
			/* parent.css('padding', '-100px'); */
			}
			else{
			static.stop().fadeTo('fast', 0);
			}
		});
		
		static.mouseleave(function(){
		
			if($.browser.msie){
			/* static.find('img').css('display', 'block'); */
			}
			else{
			static.stop().fadeTo('fast', 1);
			} 

		});
	
	});
	
	/*OUR PEOPLE ROLLOVERS */
	
});

