$(document).ready(function () {
	$('ul#switcher').live('mouseover', function(e) {
		$(this).stop(true).addClass('opened');
		$(this).animate({
			height	: '68px',
		});
	});
	
	$('ul#switcher').live('mouseout', function(e) {
		$(this).stop(true).removeClass('opened');
		$(this).animate({
			height	: '19px',
		});
	});
	
	// feedback tabs
	$(function() {
		$( "#tabs" ).tabs();
	});
	
	// feedback fadebox activation
	$('.fadebox').fancybox({
		'autoScale'		: false,
		'type'			: 'iframe',
		'width'			: '80%',
		'height'		: '80%'
	});
});
