$(document).ready(function(){

	// image rotator -- gavne slike
	var s1 = new SWFObject("/data/default/js/imagerotator.swf","rotator","398","145","7");
	s1.addParam("allowfullscreen","true");
	if(LangID==1) s1.addVariable("file","/slike");
	if(LangID==2) s1.addVariable("file","/immagini");
	if(LangID==3) s1.addVariable("file","/images");	
	s1.addVariable("width","398");
	s1.addVariable("height","145");
	s1.addVariable("shownavigation","false");				
	s1.write("mainPic");	
	

	// sporocilo
	var MsgLink;
	if(LangID==1) MsgLink = "/sporocilo";
	if(LangID==2) MsgLink = "/messagio";
	if(LangID==3) MsgLink = "/message";	
	$.get(MsgLink, {},
	  function(data){
		 if(data.replace(/^\s+|\s+$/g,"").length>0)
		 {
		 	$("#lastmsg:eq(0)").html(data);
		 	$('marquee').marquee();		 
		 }
	 });

	// news init :)
	if(ModuleName=="news")
	{
		$('#listText').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:337, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});
		$('#newsText').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:239, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});	
		if(ContentID)
		{
			try
			{
				var $textsPane = $('#listText');
				$textsPane[0].scrollTo("#news_"+ContentID);
			} catch(e) {}
		}	
	}
	
	// nastopi init
	if(ModuleName=="performance")
	{
		$('#listText').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:337, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});
	}	
	
	// biografija init 
	if(ModuleName=="bio")
	{
		if(CatID==0) $('#bioText').jScrollPane({scrollPaneHeight: 153, scrollWindowHeight:318, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});
		else  $('#bioText').jScrollPane({scrollPaneHeight: 153, scrollWindowHeight:271, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});		
	}	
	
	// diskografija init
	if(ModuleName=="disco")
	{
		if(CatID==0)
		{
			$('#discoList').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:296, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});			
		}
		else
		{
			$('#discoList').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:279, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});
			$('#discoTexts').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:333, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});	
			var $textsPane = $('#discoTexts');
			$('a.scroll-to-text').bind(
				'click',
				function()
				{
					try
					{
						var targetElementSelectorString = $(this).attr('rel');
						$textsPane[0].scrollTo(targetElementSelectorString);
						return false;
					} catch(e){}
				}
			);	
		}
	}	
	
	// media
	if(ModuleName=="media")
	{
		if(ContentID==0)
		{
			$(document).ready(function(){
			$('#mediaList').jScrollPane({scrollPaneHeight: 133, scrollWindowHeight:278, fixedDragHeight: 11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});
			});		
		}
		else
		{
			var videoID = $("#mediaPlayer:eq(0)").html();
			var so = new SWFObject('/data/default/js/flvplayer.swf','mpl','386','277','9');
			so.addParam('allowscriptaccess','always');
			so.addParam('allowfullscreen','true');

so.addParam('flashvars','&file=http://www.youtube.com/watch%3Fv%3D' + videoID + '&backcolor=004526&frontcolor=b0d6c5&lightcolor=b0d6c5&controlbar=over&autostart=true');

			so.write('mediaPlayer');
		}		
	}
	
	
	// foto
	if(ModuleName=="foto")
	{
		$('#pictures').jScrollPane({scrollPaneHeight:153, scrollWindowHeight:279, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});	

		$('.album a').lightBox({
			txtOf: lb_of,
			txtImage: lb_txtImage,
			imageLoading: '/data/default/imgs/lb/lightbox-ico-loading.gif',	
			imageBtnPrev:'/data/default/imgs/lb/lightbox-btn-prev.gif',	
			imageBtnNext: '/data/default/imgs/lb/lightbox-btn-next.gif',
			imageBtnClose: '/data/default/imgs/lb/lightbox-btn-close.gif',	
			imageBlank: '/data/default/imgs/lb/lightbox-blank.gif'
		});
	}	
	
	// trgovina
	if(ModuleName=="shop")
	{
		$('#itemsArticles').jScrollPane({scrollPaneHeight:143, scrollWindowHeight:348, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});		
	}
	
	// pokrovitelji
	if(ModuleName=="sponsors")
	{
		$('#linksPictures').jScrollPane({scrollPaneHeight:143, scrollWindowHeight:232, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});		
	}
	
	
	// povezave
	if(ModuleName=="links")
	{
		$('#linksText').jScrollPane({scrollPaneHeight:153, scrollWindowHeight:273, fixedDragHeight:11, scrollbarWidth:11, scrollbarMargin:0, showArrows: true});						
	}	
	
	
});