var gallery_cur=0;
var gallery_num=0;

$(document).ready(function(){ 
	//$('.block_b').append('<img src="/img/bcorn_tl.gif" class="ctl"><img src="/img/bcorn_tr.gif" class="ctr"><img src="/img/bcorn_br.gif" class="cbr"><img src="/img/bcorn_bl.gif" class="cbl">');

	$(document).pngFix();
		
	$('.block_b').each(function(){
		$(this).after('<table class="roundes_b"><tr><td class="ctl"><img src="/img/bcorn_tl.png" class="png"></td><td class="hor"></td><td class="ctr"><img src="/img/bcorn_tr.png" class="png"></td></tr><tr><td class="vert"></td><td class="cont">'+$(this).html()+'</td><td class="vert"></td></tr><tr><td class="cbl"><img src="/img/bcorn_bl.png" class="png"></td><td class="hor"></td><td class="cbr"><img src="/img/bcorn_br.png" class="png"></td></tr></table>');
		$(this).remove();
	});
	
	$('.block_w').each(function(){
		$(this).after('<table class="roundes_w"><tr><td class="ctl"><img src="/img/bcorn_w_tl.png" class="png"></td><td class="hor"></td><td class="ctr"><img src="/img/bcorn_w_tr.png" class="png"></td></tr><tr><td class="vert"></td><td class="cont">'+$(this).html()+'</td><td class="vert"></td></tr><tr><td class="cbl"><img src="/img/bcorn_w_bl.png" class="png"></td><td class="hor"></td><td class="cbr"><img src="/img/bcorn_w_br.png" class="png"></td></tr></table>');
		$(this).remove();
	});	

	$('.subpages > li.sel').after('<li class="pic"><img src="/img/gr_r.gif" width="13" height="28"></li>');
	$('.subpages > li.sel').before('<li class="pic"><img src="/img/gr_l.gif" width="13" height="28"></li>');

	$('.block_b_hov').addClass('block_b_hov_off');
		
	$('.block_b_hov').mouseleave(function(){
		$(this).addClass('block_b_hov_off');
	});

	$('.block_b_hov').mouseenter(function(){
		$(this).removeClass('block_b_hov_off');
	});
	
	if($('.botbgdiv:first').height() < window.innerHeight)
		$('.botbgdiv:first').css('height',window.innerHeight+'px');
	
	$('.logohover').mouseenter(function(){
		$(this).children('img:first').css('marginLeft','-'+$(this).css('width'));
	});

	$('.logohover').mouseleave(function(){
		$(this).children('img:first').css('marginLeft','0');
	});
}); 


function initGallery()
{
	$('#photogallery_medphoto').load(function(){
		//$(this).parent().parent().css('height','auto');
		$(this).fadeIn(300)
	});
	
	$('.thumbs > .inner > .item > a').click(function(){
		$('#photo_thumbs_inner > .item > a').removeClass('sel');
		$(this).addClass('sel');
		$rel=$(this).attr('rel');
		$hre=$(this).attr('href');

		//$('#photogallery_medphoto').parent().parent().css('height',$('#photogallery_medphoto').height()+'px');
		$('#photogallery_medphoto').fadeOut(200,function(){
			$('#photogallery_medphoto').attr('src',$hre);
			$('#photogallery_medphoto').parent().attr('href',$hre);
			$('#photogallery_medphoto').parent().attr('rel',$rel);
		});
    			
    return false;
  });	
  
	var inw=0;
	var thw=parseInt($('.photogallery > .thumbs:first').css('width').replace('px',''));
  $('#photo_thumbs_inner > .item').each(function(){
  	inw+=$(this).outerWidth()+4;
  });
  $('#photo_thumbs_inner').css('width',(inw)+'px');
  var diff=inw-thw;
  /*
  if(diff > 0)
  {
	  $('#photo_scroll_right').mousedown(function(){
	  	cur=parseInt($('#photo_thumbs_inner').css('marginLeft').replace('px',''));
	  	if(isNaN(cur))
	  		cur=0;
	  	move=500+2000*((cur+diff)/diff);
	  	$('#photo_thumbs_inner').animate({marginLeft: '-'+diff+'px'},move);
	  });
	  
	  $('#photo_scroll_left, #photo_scroll_right').mouseup(function(){
	  	$('#photo_thumbs_inner').stop();
	  });
	  $('#photo_scroll_left, #photo_scroll_right').mouseleave(function(){
	  	$('#photo_thumbs_inner').stop();
	  });	  

	  $('#photo_scroll_left').mousedown(function(){
	  	cur=parseInt($('#photo_thumbs_inner').css('marginLeft').replace('px',''));
	  	if(isNaN(cur))
	  		cur=0;
	  	$('#photo_thumbs_inner').animate({marginLeft: '0px'},500+2000*(1-((cur+diff)/diff)));
	  });
	}
	else
		$('#photo_scroll_left, #photo_scroll_right').remove();
	*/
	
	gallery_num=$('#photo_thumbs_inner > .item').length;
	gallery_cur=0;
	$('#photo_scroll_right').click(function(){	
		if(gallery_cur < gallery_num-1)
		{
			gallery_cur++;
			if(gallery_cur > 5)
			{
				ml=parseInt($('#photo_thumbs_inner').css('marginLeft').replace('px',''));
				if(ml > -(gallery_cur-5)*70)
					$('#photo_thumbs_inner').css('marginLeft',(-(gallery_cur-5)*70));
			}
			
			$('#photo_thumbs_inner > .item > a:eq('+gallery_cur+')').click();
		}
	});
	
	$('#photo_scroll_left').click(function(){	
		if(gallery_cur > 0)
		{
			gallery_cur--;

			ml=parseInt($('#photo_thumbs_inner').css('marginLeft').replace('px',''));
			if(ml < -(gallery_cur)*70)
					$('#photo_thumbs_inner').css('marginLeft',(-(gallery_cur)*70));

			$('#photo_thumbs_inner > .item > a:eq('+gallery_cur+')').click();
		}
	});	
}


