 $(document).ready(function(){  
			$(".tip a").hover(function() {
			$(this).next("div").stop(true, true).animate({opacity: "show", bottom: "29"}, "fast");
			}, function() {
			$(this).next("div").animate({opacity: "hide", bottom: "60"}, "slow");
			});	
			$(".tbltip a").hover(function() {
			$(this).next("div").stop(true, true).animate({opacity: "show", bottom: "29"}, "slow");
			}, function() {
			$(this).next("div").animate({opacity: "hide", bottom: "60"}, "slow");
			});	
			
			$(".competition").click(function(){
				$("#compform").animate({'width':'toggle'}, function() { });
			$(this).toggleClass("active"); return false;
	});
}); 
 
jQuery(function( $ ){

	$.localScroll.defaults.axis = 'xy';

	$.localScroll({
		target: '#details', 
		queue:true,
		duration:1000,
		hash:true,
		onBefore:function( e, anchor, $target ){

		},
		onAfter:function( anchor, settings ){

		}
	});
});
