jQuery(function() {
	jQuery('#top-bar .lang li').first().addClass('first');
	jQuery('#top-bar .menu li').first().addClass('first');
	jQuery('.b-events li').last().addClass('last');
	jQuery('#submenu li').hoverIntent({
		interval: 50,
		over: drops_show, 
		timeout: 50,
		out: drops_hide
	});
	
	jQuery('.teenused-portlet .list .row .toggler-icon').live('click', function() {
		jQuery(this).toggleClass('close');
		jQuery('.content', this.parentNode.parentNode).slideToggle(200);
		return false;
	});
	
	var liCount = 1;
	jQuery('.portlet-image-gallery .gallery-list li').each(function() {
		if ((liCount % 3) == 0) {
			jQuery(this).after('<li class="clear"></li>');
		}
		liCount++;
	});
});

function drops_show(){ 
	jQuery('ul', this).slideDown('fast');
}
function drops_hide(){
	jQuery('ul', this).slideUp('fast'); 
}
