/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

window.addEvent('domready', function() {
    var smartBox = new SmartHoverBox(700, 30, 0, '_smarthbox', 'smarthbox_close');

    /*
    var toggleMe =  new Fx.Slide('loginfield',
    {
        duration: 800,
        transition: 'bounce:out'
    });

    toggleMe.hide();
    $('toggler').addEvent('click', function(e) {
        e.stop();
        toggleMe.toggle();
    });*/

    $$('.cloth_selector_btn').each(function(item) {
        item.addEvent("click", function() {
           //alert(item.getProperty('name'));
           window.scrollTo(0,0);
        });
    });

	/*
    $$('.selected_cloth').each(function(item) {
       item.addEvent("click", function() {
           alert(item.getProperty('html'));
       })
    });

    $('go_back_button').addEvent("click", function() { 
        history.go(-1);
    });
	*/
});

