$(document).ready(function() {
    $('#slider').s3Slider({
        timeOut: 3000
    });
    
    $('#clients').jcarousel({
    	scroll:2
    });

	$("#services ul li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});
	
	/*$("ul#clients li a").hover(function() {
	  $(this).next("em").animate({opacity: "show", top: "0"}, "slow");
	}, function() {
	  $(this).next("em").animate({opacity: "hide", top: "30"}, "fast");
	});*/
	
	 $("ul#clients li a").tooltip({
	 	offset: [10, 0],
	 	effect: 'slide',
	 	onBeforeShow: function(event, position) {
			this.getTip().appendTo(document.body);
			return true;
		}
	});
	 
});
