$(function(){
$('.serviceList li a')
.css( {backgroundPosition: "0 140px"} ) .mouseover(function(){$(this).stop().animate({backgroundPosition:"(0 33px)"}, {duration:500})})
.mouseout(function(){$(this).stop().animate({backgroundPosition:"(0 140px)"}, {duration:500, complete:function(){$(this).css({backgroundPosition: "0 140px"})}})})
});

$(function(){
  var path = location.pathname.substring(1);
  if ( path )
    $('#navigation a[@href$="' + path + '"]').attr('class', 'selected');
});


$(document).ready(function() { 
	$('#innerFade').innerfade({ 
		speed: 'slow', 
		timeout: 4000, 
		type: 'random', 
		containerheight: '0'
	});
});