/*
 document.addEvent('domready', function() {

		var tokens = ['Bra Duro', 'Pecorino Fresco', 'Ombra', 'Gamenedo', 'Doddington', 'Quicke\'s Goat Cheddar', 'Raclette', 'Red Cloud', 'Red Hawk', 'Red Leicester', 'Ricotta Salata', 'Roaring 40\'s Blue', 'Robiola A Due Latte', 'Robiola A Tre Latte', 'Roncal', 'Roquefort', 'San Joaquin Gold', 'Seal Bay', 'Selles-Sur-Cher', 'Smoked Gouda', 'Sovrano', 'Saint Andre', 'Stichelton', 'Taleggio', 'Tomme Crayeuse', 'Tomme de Savoie', 'Tulare Cannonball', 'Valdeon', 'Tumbleweed', 'Zamorano', 'La Serena', 'La Peral', 'Lamb Chopper', 'Leonora', 'Livarot', 'Mahon', 'Manchego', 'Midnight Moon', 'Montcabrer', 'Montgomery\'s Cheddar', 'Morbier', 'Mount Tam', 'Muenster', 'Nevat', 'Nocetto Di Capra', 'Oregon Blue Vein', 'Palhais', 'Pantaleo', 'Parmagiano Reggiano', 'Pastore', 'Pecorino Foglia di Noce', 'Pecorino Romano', 'Petit Agour', 'Piave', 'Pico', 'Pleasant Ridge Reserve', 'Provolone', 'Canestrato', 'Cashel Blue', 'Chester', 'Clara', 'Comte (Essex St)', 'Constant Bliss', 'Eden', 'Emmenthaler', 'Epoisses', 'Fiore Sardo', 'Fontina', 'Fourme D\'Ambert', 'Gardunha', 'Gran Queso', 'Grayson', 'Great Hill Blue', 'Gruyere', 'Harpersfield Double Soak', 'Hoch Y Brig', 'Hooligan', 'Hudson Valley Camembert', 'Humboldt Fog', 'Ibores', 'Idiazabal', 'Kunik', 'Abrigo', 'Aragones', 'Ardrahan', 'Ascutney Mountain', 'Bayley Hazen', 'Brebirousse de Argental', 'Caciota Al Tartuffo', 'Brie de Nanjis', 'Abbaye De Belloc'];

		// Our instance for the element with id "demo-local"
		new Autocompleter.Local('ajaxSearch_input', tokens, {
			'minLength': 1, // We need at least 1 character
		});

	   
});  
*/

var Site = {
      
	init: function(){  
			     
	  	if ($('browse')) Site.browse();

		Site.autosearch(); 
		//Site.vine();    
		
		if ($('shelftalker')) {
			//nothing
		} else {
			Site.products();			
		}
		
	},    
	
	browse: function(){   
				
		var myAccordion = new Fx.Accordion($$('.trigger'), $$('.slider'), {
		    display: -1,
		    alwaysHide: true
		});
		
	},
	
	autosearch: function(){
		document.addEvent('domready', function() {

		        var tokens = ['Bra Duro', 'Pecorino Fresco', 'Ombra', 'Gamenedo', 'Doddington', 'Quicke\'s Goat Cheddar', 'Raclette', 'Red Cloud', 'Red Hawk', 'Red Leicester', 'Ricotta Salata', 'Roaring 40\'s Blue', 'Robiola A Due Latte', 'Robiola A Tre Latte', 'Roncal', 'Roquefort', 'San Joaquin Gold', 'Seal Bay', 'Selles-Sur-Cher', 'Smoked Gouda', 'Sovrano', 'Saint Andre', 'Stichelton', 'Taleggio', 'Tomme Crayeuse', 'Tomme de Savoie', 'Tulare Cannonball', 'Valdeon', 'Tumbleweed', 'Zamorano', 'La Serena', 'La Peral', 'Lamb Chopper', 'Leonora', 'Livarot', 'Mahon', 'Manchego', 'Midnight Moon', 'Montcabrer', 'Montgomery\'s Cheddar', 'Morbier', 'Mount Tam', 'Muenster', 'Nevat', 'Nocetto Di Capra', 'Oregon Blue Vein', 'Palhais', 'Pantaleo', 'Parmagiano Reggiano', 'Pastore', 'Pecorino Foglia di Noce', 'Pecorino Romano', 'Petit Agour', 'Piave', 'Pico', 'Pleasant Ridge Reserve', 'Provolone', 'Canestrato', 'Cashel Blue', 'Chester', 'Clara', 'Comte (Essex St)', 'Constant Bliss', 'Eden', 'Emmenthaler', 'Epoisses', 'Fiore Sardo', 'Fontina', 'Fourme D\'Ambert', 'Gardunha', 'Gran Queso', 'Grayson', 'Great Hill Blue', 'Gruyere', 'Harpersfield Double Soak', 'Hoch Y Brig', 'Hooligan', 'Hudson Valley Camembert', 'Humboldt Fog', 'Ibores', 'Idiazabal', 'Kunik', 'Abrigo', 'Aragones', 'Ardrahan', 'Ascutney Mountain', 'Bayley Hazen', 'Brebirousse de Argental', 'Caciota Al Tartuffo', 'Brie de Nanjis', 'Abbaye De Belloc'];

		    new Autocompleter.Local('ajaxSearch_input', tokens, {
		          'minLength': 1, // We need at least 1 character
		    }); 

		});
	},   
	
	products: function() {

        var item = $$('div.item');

        var test = item.offsetHeight;

        item.each(function(el) {

            el.setStyle('height', test);

            el.addEvent('mouseenter',
            function() {
                this.tween('height', test);
            });

            el.addEvent('mouseleave',
            function() {
                this.tween('height', test);
            
            });

        })

    },
	
	vine: function() { 
		
		 $('vine').setStyle('margin-top', '-35');
		$('vine').addEvent('mouseover', function() {
				$('vine').set('tween', {duration: 'long'});
				$('vine').tween('margin-top', '-5');
		});
	}
  	
	
};

window.addEvent('load', Site.init);
