$(document).ready(function(){
	activateNavigationTab();
	headersGradient();
	$('#Slider').Fader();
	$('#ClientSlider').clientsSlider();
	shadow();
});

function activateNavigationTab() {
	$('#menu').find('.'+$('body').attr('id')).addClass('active');
}

function headersGradient() {
	/* HS - TODO get latest version of the pxgradient pluggin and then re-test on
	 * IE 7 to ensure that the graduation works correctly */
	/*
	$('h2').pxgradient ({ 
		step: 10, 
		colors: ["#4661AD", "#2E0557"],
		dir: "x"
	});
	*/
	$('h2').css("color", "#2E0557");	
}

function shadow() {
	$('.shadow').dropShadow({
	    left: 0,
	    top: 0,
	    blur: 10,
	    opacity: 2,
	    color: "black",
	    swap: false
	});
}
