$(document).ready(function() {
  
	// effect for the services page
	
	
	$('#servicesPageItems .section').each(
	
		function( intIndex ) {
			
			var animationArgs = {};
			animationArgs['opacity'] = 1;
			animationArgs['marginLeft'] = 40 * intIndex;
			
			$(this).animate(animationArgs,{ queue:true, duration:1000 });
			
		}
		
	);
	
	if($.browser.msie && $.browser.version == 6){
		var src = $('#logo').attr('src');
		$('#logo').css('width', 325).css('height', 68);
		$('#logo').attr('src', '../images/s.gif');
		$('#logo')[0].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='" + 'crop' + "', enabled='true')";
	}


});

