// setting menu
$(function() {
	$("#menu ul li ul li:last-child").addClass("last-child");
	/** menu for the lesser browsers */
	$('#menu ul li').hover(function() {
		$(this).addClass('hover');
	}).mouseleave(function() {
		$(this).removeClass('hover');
	});
	
	init_menu('language');
});

// setting image gallery
$(document).ready(function(){
	$('#photos').galleryView({
		panel_width: 320,
		panel_height: 240,
		frame_width: 100,
		frame_height: 75,
		background_color:'#151515',
		transition_interval: 0
	});
});

// header wissel
$(function() {
	var i = $('.slide').eq(1), t = setInterval(function() { f(i) }, 6000);
	function f(e) { $($(e).fadeIn(3000).parent().find('li:visible').not(e)).fadeOut(3000); i = (i.next().length > 0) ? i.next() : $('.slide:first'); }
});
