$(document).ready(function(){
	
	$("#scroll_bottom").carouFredSel({
			direction: "left",
				scroll: {
				fx			: "crossfade"
			},
			auto: {
			  items: 1,  
			  easing: "linear",  
			  pauseDuration: 13000 
		   },

			prev : {	
				button	: "#scroll_prev",
				key		: "left"
			},
			next : { 
				button	: "#scroll_next",
				key		: "right"
			}
	});	
	
	$("#scroll_bottom_logos").carouFredSel({
			direction: "left",
				scroll: {
				fx			: "crossfade"
			},
			auto: {
			  items: 1,  
			  easing: "linear",  
			  pauseDuration: 4000 
		   }/*,

			prev : {	
				button	: "#scroll_prev_",
				key		: "left"
			},
			next : { 
				button	: "#scroll_next_",
				key		: "right"
			}*/
	});		
	
	var $tabs = $('.menu-tab > ul').tabs();

	$('.gallery > li a').click(function(){
			var img = '<img src="images/gallery/'+$(this).attr("rel")+'" width="361" height="291" />';
			var div = $(this).attr("rel").split("-")
			$(("."+div[0])).html(img);
		})
	 $("#lang").change(function(){
		$.ajax({
			type: "POST",
			url:  "includes/lang/Conf.php",  
			data: "opt_attempt="+$(this).val(),
			success: function(data) {
				var pathname = window.location.pathname;
				window.open(pathname,'_self');

			}
		});
  	})	
});

function selTabs(id){
	var $tabs = $('.menu-tab > ul').tabs();
	$tabs.tabs('select', parseInt(id)); 
	return false;
}


