/*
** Search select 
** written by Arunas Janeliunas, Verslo Zinios
*/

search_select = function(){}

search_select.cat_list;

search_select.go = function()
{
    this.cat_list = $('activeSearchList');
    this.cat_list.style.left = $('activeSearchSelect').cumulativeOffset()[0]  + 'px';
    this.cat_list.style.top = ($('activeSearchSelect').cumulativeOffset()[1]-181) + 'px';
    
	Effect.BlindUp(this.cat_list, {duration:0.1});
}

search_select.show_cat = function()
{
	this.cat_list.style.top = ($('activeSearchSelect').cumulativeOffset()[1]-181) + 'px';
	Effect.BlindDown(this.cat_list, {duration:0.4});
}

search_select.hide_cat = function()
{
    Effect.BlindUp(this.cat_list, {duration:0.2});
}
