/**
 * @author Ryan Johnson <http://syntacticx.com/>
 * @copyright 2008 PersonalGrid Corporation <http://personalgrid.com/>
 * @package LivePipe UI
 * @license MIT
 * @url http://livepipe.net/control/tabs
 * @require prototype.js, livepipe.js
 */

//global window, document, Prototype, $, $A, $H, $break, Class, Element, Event, Control
//http://livepipe.net/control/tabs - demo page



document.observe('dom:loaded',function(){
			
	//Sub-Navigation Tabs

	new Control.Tabs('tabs');


});

document.observe('dom:loaded',function(){
			
	//Scroll-Over Image-Swapping

	new Control.Tabs('image-swap',{ 
		activeClassName: 'activeImage',
		hover: true  
	});  

});