$(document).ready(
				function(){
			
			$('#request-main button').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
			}, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
			
			$('#request-pricing button').hover(function(){
		         $(this).stop().animate({'opacity' : '0'}, 500);
			}, function(){$(this).stop().animate({'opacity' : '1'}, 500);});
			
			
			$('ul#images').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '199px'
				
					});
			
			$('ul#fader-links').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '25px'
					});
					
			

});

