$(function() {
	$('#menu a').mouseover(function() {
		$(this).addClass('hover').siblings().addClass('hover');
	}).mouseout(function() {
		$(this).removeClass('hover').siblings().removeClass('hover');
	});

	$('#slider').cycle( {
		fx : 'fade',
		speed : 2000,
		timeout : 4000
	});

	$("a[rel='fb']").colorbox();
	$("a[rel='fb2']").colorbox();
});
