// Global vars
//++++++++++++++++++++++++++++++++++++++++//
var inputDefaults = {};
// Global methods
//++++++++++++++++++++++++++++++++++++++++//



// Window load actions
//++++++++++++++++++++++++++++++++++++++++//
Event.observe(window, 'load', function(){  
	// COLECTION ROLLOVERS
	$$('div.collection').each(function(element){
		Event.observe(element, 'mouseover', function(event){element.down('.fader').removeClassName('invisible')});
	});
	$$('div.collection').each(function(element){
		Event.observe(element, 'mouseout', function(event){element.down('.fader').addClassName('invisible')});
	});
	// COLECTION VERTICAL TEXT
	$$('div.collection div.inner_text span.heading').each(function(element){
		var height 			= element.getHeight();
		var thumbHeight 	= element.up('.collection').getHeight();
		var marginTop		= (thumbHeight-height)/2;
		element.setStyle({marginTop: marginTop+'px'});
	});

 });
