$(document).ready(function(){
	
	var product = $("#pears .tabs li:first");
					
	if(product.hasClass("activetab")){
	} else{
	$("#pears .tabs li").removeClass("activetab");
	$("#pears .tabs li .content").slideUp("slow");
	var lnk = product.children("a").attr("rel");
	product.children(".content").load(lnk, function(){
				product.children(".content").slideDown("slow");
										});
	product.addClass("activetab");
	};
	$("#pears .tabs li a").hoverIntent(function(){
					
					if($(this).parent().hasClass("activetab")){
					} else{
					$("#pears .tabs li").removeClass("activetab");
					$("#pears .tabs li .content").slideUp("slow");
					var lnk = $(this).attr("rel");
					$(this).next().load(lnk, function(){
								$(this).slideDown("slow");
														});
					$(this).parent().addClass("activetab");
					//setTimeout("$.scrollTo($('.activetab'), 500,{offset:-40});", 900);
					}
										  },function(){});
						   });
