// JavaScript Document
//by:Goshine 2011 globet.com
//site:goshine-design.co.uk

var tabs = 'a#sportTab,a#livebetTab,a#casinoTab,a#threedcasinoTab,a#livecasinoTab,a#pokerTab';
var buttons = 'a#sportButton,a#livebetButton,a#casinoButton,a#threedcasinoButton,a#livecasinoButton,a#pokerButton';
var tabObject = {
"sport":{
"tabOverBg":"sports_tab_02.png",
"tabNormalBg":"sports_tab_over_02.png",
"btnOverBg":"-1320px -100px",
"btnNormalBg":"-986px -99px",
"hbarCoTop":"0px -417px",
"hbarCoBtm":"0px -446px",
"mbg":"sps-star-bg.jpg"

},
"livebet":{
"tabOverBg":"livebet_tab_02.png",
"tabNormalBg":"livebet_tab_over_02.png",
"btnOverBg":"-1320px -238px",
"btnNormalBg":"-986px -238px",
"hbarCoTop":"0px -209px",
"hbarCoBtm":"0px -238px",
"mbg":"lvb-star-bg.jpg"

},
"casino":{
"tabOverBg":"casino_tab_02.png",
"tabNormalBg":"casino_tab_over_02.png",
"btnOverBg":"-1320px -376px",
"btnNormalBg":"-986px -376px",
"hbarCoTop":"0px -346px",
"hbarCoBtm":"0px -376px",
"mbg":"cso-star-bg.jpg"

},
"threedcasino":{
"tabOverBg":"threedcasino_tab_02.png",
"tabNormalBg":"threedcasino_tab_over_02.png",
"btnOverBg":"-1320px -29px",
"btnNormalBg":"-986px -29px",
"hbarCoTop":"0px 0px",
"hbarCoBtm":"0px -29px",
"mbg":"thd-star-bg.jpg"

},
"livecasino":{
"tabOverBg":"livecasino_tab_02.png",
"tabNormalBg":"livecasino_tab_over_02.png",
"btnOverBg":"-1320px -307px",
"btnNormalBg":"-986px -306px",
"hbarCoTop":"0px -278px",
"hbarCoBtm":"0px -308px",
"mbg":"lvc-star-bg.jpg"

},
"poker":{
"tabOverBg":"poker_tab_over_02.png",
"tabNormalBg":"poker_tab_02.png",
"btnOverBg":"-1320px -169px",
"btnNormalBg":"-986px -169px",
"hbarCoTop":"0px -139px",
"hbarCoBtm":"0px -170px",
"mbg":"pk-star-bg.jpg"
}};
//---


$(function (){
 //---
 //-- change banner lang
 $("#optinalpromoPanelWrapper img").attr("src","http://cache.agenziasportiva.com/main/images_game_08_02_11/landing_promotion/greatpromotion_"+langSwitch(lang)+".jpg");
   $(tabs ).hover(function(event){
		//-- over
		var preUrl = "http://cache.agenziasportiva.com/main/images_game_08_02_11/";
		var id = $(this).attr("id").replace("Tab","");
		var url = tabObject[id]['tabOverBg'];
		var btnOverBg = tabObject[id]['btnOverBg'];
		var lcBtn = $(this).next("a");
		var hbarCoTop = tabObject[id]['hbarCoTop'];
		var hbarCoBtm = tabObject[id]['hbarCoBtm'];
		
		//alert(mbg);
		$(this).css("background-image","url("+preUrl+url+")");
		lcBtn.css("background-position", btnOverBg);
		$(".tabTop").css("background-position",hbarCoTop);
		$(".tabBotton").css("background-position",hbarCoBtm);

		
	    //--
		},function(event){
			//-- out
		var preUrl = "http://cache.agenziasportiva.com/main/images_game_08_02_11/";
		var id = $(this).attr("id").replace("Tab","");
		var url = tabObject[id]['tabNormalBg'];
		var btnNormalBg = tabObject[id]['btnNormalBg'];
		var lcBtn = $(this).next("a");
		
		
		$(this).css("background-image","url("+preUrl+url+")");
		lcBtn.css("background-position",btnNormalBg);
		$(".tabTop").css("background-position","0px -71px");
		$(".tabBotton").css("background-position","0px -100px");
		//$("#tb").html(url);
		});
		//------------

	$(buttons ).hover(function(event){
		//-- over
		var id = $(this).attr("id").replace("Button","");
		var url = tabObject[id]['tabOverBg'];
		var btnOverBg = tabObject[id]['btnOverBg'];
		var lcBtn = $(this).prev("a");
		var hbarCoTop = tabObject[id]['hbarCoTop'];
		var hbarCoBtm = tabObject[id]['hbarCoBtm'];
		$(this).css("background-position", btnOverBg);
		
		$(".tabTop").css("background-position", hbarCoTop);
		$(".tabBotton").css("background-position",hbarCoBtm);

	 	},function(event){
			
		//-- out
		var id = $(this).attr("id").replace("Button","");
		var url = tabObject[id]['tabNormalBg'];
		var btnNormalBg = tabObject[id]['btnNormalBg'];
		//var lcBtn = $(this).prev("a");
		$(this).css("background-position",btnNormalBg);
		//lcBtn.css("background-position",btnNormalBg);
		
		$(".tabTop").css("background-position","0px -71px");
		$(".tabBotton").css("background-position","0px -100px");
		
		});
		

//--

//--
setTimeout( slideSwitch, 1000 );
//-------
})
//---

function slideSwitch() {
var $active = $("#slideshow li.active");

if ( $active.length == 0 ) $active = $("#slideshow li:last");
	// use this to pull the images in the order they appear in the markup
    var $next =  $active.next().length ? $active.next() : $("#slideshow li:first");
    var $sibs  = $active.siblings();
    var rndNum = Math.floor(Math.random() * $sibs.length );
    var $next  = $( $sibs[ rndNum ] );
	//------
	 $active.addClass("last-active");
	 $next.css({opacity: 0.0}).addClass("active").animate({opacity: 1.0}, 1000, function() {
   	 $active.removeClass("active last-active");
	 
   });
   setTimeout( slideSwitch, 3000 );
}

// banner lang
function langSwitch(ls) {


if( (ls === "en")|| (ls === "it")||(ls ==="fr")||(ls ==="gr")){
return ls;
}
return "en";
}

