// JavaScript Document

jQuery.fn.delay = function(time,func){
	this.each(function(){
		setTimeout(func,time);
	});
	
	return this;
};

jQuery().ready(function(){
	jQuery('#tabs').tabs();
	jQuery("#backTabs").animate({ 
        opacity: 0
      }, 1 );

	jQuery(this).delay(1000,function(){
		jQuery("#tabs").fadeIn("slow");
		jQuery("#backTabs").animate({ 
        opacity: 0.9
      }, 1500 );

	});
});
