
$(document).ready(function() {
	
	$(".language-switch").change(function() {
		$.ajax({
			url: "/translation/switch/" + $("option:selected", this).attr("data-langcode"),
			context: document.body,
			success: function(){
				location.reload();
			}
		});		
	});
	
	setTimeout( function() {
		$(".carousel").jCarouselLite({
	        btnNext: ".next",
	        btnPrev: ".prev",
	        auto: 2500,
	        speed: 400,
	        visible: 1
	    });
	}, 100);
	
	// selectbox styled
	$('.language-switch').customStyle();
		
	//tooltip
    $('.tooltipbasic').tipsy({gravity: 'se'});
    
	var $oe_menu		= $('#mainnav');
	var $oe_menu_items	= $oe_menu.children('li');
	var $oe_overlay		= $('#oe_overlay');

    $oe_menu_items.bind('mouseenter',function(){
		var $this = $(this);
		$this.addClass('slided selected');
		$this.children('div').css('z-index','9999').stop(true,true).slideDown(200,function(){
			$oe_menu_items.not('.slided').children('div').hide();
			$this.removeClass('slided');
		});
	}).bind('mouseleave',function(){
		var $this = $(this);
		$this.removeClass('selected').children('div').css('z-index','1');
	});

	$oe_menu.bind('mouseenter',function(){
		var $this = $(this);
		$oe_overlay.stop(true,true).fadeTo(200, 0.6);
		$this.addClass('hovered');
	}).bind('mouseleave',function(){
		var $this = $(this);
		$this.removeClass('hovered');
		$oe_overlay.stop(true,true).fadeTo(200, 0);
		$oe_menu_items.children('div').hide();
	})    
	
	Socialite.load( document.getElementById('social') );
		
});
