$(document).ready(function(){
    $("#bottom_right ul li ul li a").click(function(){
       var text = $(this).text();
       var a =$("object embed").eq(0).attr("src");
       a = a.replace('assets/templates/optika/img/baner2.swf',' ');
       $("object embed").eq(0).attr("src",a);
    });
    
    function go(){
			flowplayer("player", "/assets/templates/optika/flowplayer.swf");
    }
    
    if($('.scroll-pane').length > 0){
    	$('.scroll-pane').jScrollPane();
    	
    	$('#foto_video').delegate('li','click',function(){
    		$('foto_video img').removeClass('active');
    		$('#shadow').css('display','block');
    		var width = $(this).find('img').attr('w');
    		var height = $(this).find('img').attr('h');
                var alt = $(this).find('img').attr('alt');
    		$(this).find('img').addClass('active');
    		var src = $(this).find('img').attr('src');
    		if (($(this).has('.play')).length > 0) {
    			var movie = $(this).find('img').attr('title');
				$('#galery').empty().append('<span id="galery_x"></span>').css({'width' : width+"px", 'height' : height+"px", 'display' : 'block','background' : 'black','margin-left' : -(width/2), 'margin-top' : -(height/2)}).append('<a href="/'+movie+'" style="display:block;width:600px;height:400px;" id="player"></a>');
				go();    			
    		} else {
    			$('#galery').empty().append('<span id="galery_x"></span><span id="galery_left"></span><span id="galery_right"></span>').css({'width' : width+"px", 'height' : height+"px", 'display' : 'block','background' : 'url(/'+src+') no-repeat left top','margin-left' : -(width/2), 'margin-top' : -(height/2)});
                        if (alt) {
                                $('#galery').append('<p class="gal-desc">'+alt+'</p>');
                        }
    		}
    	});
    	
    	$('#galery_x').live('click',function(){
    		$('#shadow,#galery').css('display','none');
    	});
    	
    	$('#galery_right').live('click',function(){
                $('#galery p').remove();
    		var index = $('#foto_video li img.active').index('#foto_video li img');
    		var img = $('#foto_video li img').eq(index+1).attr('src');
    		var width = $('#foto_video li img').eq(index+1).attr('w');
    		var height = $('#foto_video li img').eq(index+1).attr('h');
    		var alt = $('#foto_video li img').eq(index+1).attr('alt');
    		$('#foto_video li img').removeClass('active');
    		if ((index+1) >= $('#foto_video li img').length){
    			return false;
    		} else {
    			$('#foto_video li img').eq(index+1).addClass('active');
    		}
    		$('#galery').css({'backgroundImage' : 'url(/'+img+')','width' : width+"px", 'height' : height+"px",'margin-left' : -(width/2), 'margin-top' : -(height/2)});
                if (alt) {
                      $('#galery').append('<p class="gal-desc">'+alt+'</p>');
                }
    	});
    	
    	$('#galery_left').live('click',function(){
                $('#galery p').remove();
    		var index = $('#foto_video li img.active').index('#foto_video li img');
    		var img = $('#foto_video li img').eq(index-1).attr('src');
    		var width = $('#foto_video li img').eq(index-1).attr('w');
    		var height = $('#foto_video li img').eq(index-1).attr('h');
    		var alt = $('#foto_video li img').eq(index-1).attr('alt');
    		$('#foto_video li img').removeClass('active');
    		if ((index+1) >= $('#foto_video li img').length){
    			return false;
    		} else {
    			$('#foto_video li img').eq(index-1).addClass('active');
    		}
    		$('#galery').css({'backgroundImage' : 'url(/'+img+')','width' : width+"px", 'height' : height+"px",'margin-left' : -(width/2), 'margin-top' : -(height/2)});
                if (alt) {
                      $('#galery').append('<p class="gal-desc">'+alt+'</p>');
                }
    	});
    	
    }
    
});
