/*	Redda Group Global JavaScript
	@author Yonas Hassen
----------------------------------*/
$(function (){  
	// Global Controls
	$("#homeButton img").hover(function() {
		$(this).fadeTo( 100 , 0.33 );
		$(this).fadeTo( 500 , 1 );
	});
	$("#nav ul a").smoothScroll();
	$("#homeButton a").smoothScroll();
	$("#accordion").accordion();
	
	// Home page controls
	$("#featureHome a").smoothScroll();
	
	// Who We Are page controls
	$("#featureWho a").smoothScroll();
	
	// Our Practice page controls
	$("#featurePractice a").smoothScroll();
	
	// Careers page controls
	$("#featureCareers a").smoothScroll();
});
