document.observe('dom:loaded', function() {
	if($('product-attribute-tabs')) {
		new Control.Tabs('product-attribute-tabs', {
			defaultTab:'product-overview'
		});
	}
	
	if($('login-email')) {
		new Placeholder('login-email');
	}
	if($('login-password')) {
		new Placeholder('login-password');
	}
  
});

Event.observe(window, 'load', function() { // Needs to be in window onload to avoid ie7 Opertation Aborted prob - http://blogs.msdn.com/ie/archive/2008/04/23/what-happened-to-operation-aborted.aspx
	
	 if($('product-select-container')){
		new CoolScroll(
			'product-select-container', 
			'product-select-content',
			'product-select-strip'
		);
	}
 });

