/****************************************************** 
	Title:    
	Author:   Wizzard Bulgaria
******************************************************/

$(function() {
	
	function vertical_alignment(obj)
	{
		if(obj.height() < obj.parent().height())
		{ 
			var margin_top = (obj.parent().height() - obj.height())/2;
			obj.css('margin-top' , margin_top).children().css('visibility', 'visible');
		}
	}
	
	$('ul.advices li a').each(function () {
		vertical_alignment($(this));
	
	});
	
	Wizzard.CustomSelect('.Wizz_sel', {
        theme: 'oringe',
        animation: 'slide',
        scrollable: true
    });
	
})
