$(document).ready(function(){
	$(".homebox p").hide();
	$(".homebox p[title='1']").show();	
	$("div.homebox span.tab a").click(function(){
		$(".homebox span.tab").removeClass("active");
		$(".homebox span.tab").removeClass("inactive");
		$(".homebox span.tab").addClass("inactive");
		$(this).parent().removeClass("inactive");
		$(this).parent().addClass("active");
		var tabNum = $(this).attr("rel");
		$(".homebox p:visible").hide('fast');
		$("p[title="+tabNum+"]").show();
		return false;
	});
});