$(document).ready(function() {
	

	if(window.location.hash.length > 0)
	{
		
		if(window.location.hash == '#cecha_moc_kapsulek')
		{
		  $('.cecha_3.tresc').toggleClass('tresc-open');
          $('.cecha_3').children('div.tekst').toggleClass('tekst-none');	
		}
		else
		{
		  $(window.location.hash).parents('div.tresc').children('div.tekst').toggleClass('tekst-none');
		  $(window.location.hash).parents('div.tresc').toggleClass('tresc-open');
		}
		
	}
	
    
    $('.more').click(function(){
      $(this).parents('div.tresc').toggleClass('tresc-open');
	  if($(this).parents('div').children('div.tekst').length)
	  {
	    $(this).parents('div').children('div.tekst').toggleClass('tekst-none');
	  }
      
	  if($(this).parent().parent().prev('.top-tresc').children('a').attr('id').length)
      {
	    window.location='#'+$(this).parent().parent().prev('.top-tresc').children('a').attr('id');
	  }
    });
  
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });
    
    $('#image_button').click(function(){
      $('#popup').fadeIn('slow');
      return false;
    });
    $('.popup_close').click(function(){
      $('#popup').fadeOut('slow');
      return false;
    });
    
    /* footer produckt logo */
	var tekstToggled = false;
	$('.logo-anchor').click(function(){
	
      //$('.cecha_1.tresc').toggleClass('tresc-open');
      //$('.cecha_1').children('div.tekst').toggleClass('tekst-none');
      
	  
      //$('.cecha_1').children('div.tekst').toggleClass('tekst-none');
	  if($(this).hasClass('footer_logo1'))
	  {
	    if(!$('#cecha_1_gripex').is(':visible'))
		{
	      $('.cecha_1.tresc').toggleClass('tresc-open');
          $('.cecha_1').children('div.tekst').toggleClass('tekst-none');	
		}
	    window.location= '/gripex/#cecha_1_gripex';
	  }
	  if($(this).hasClass('footer_logo2'))
	  { 
	    if(!$('#cecha_1_gripexmax').is(':visible'))
		{
	      $('.cecha_1.tresc').toggleClass('tresc-open');
          $('.cecha_1').children('div.tekst').toggleClass('tekst-none');	
		}
	    window.location= '/gripex/#cecha_1_gripexmax';
	  }
	  if($(this).hasClass('footer_logo3'))
	  {
	    if(!$('#cecha_1_gripexnoc').is(':visible'))
		{
	      $('.cecha_1.tresc').toggleClass('tresc-open');
          $('.cecha_1').children('div.tekst').toggleClass('tekst-none');	
		}
	    window.location= '/gripex/#cecha_1_gripexnoc';
	  }
	  if($(this).hasClass('footer_logo4'))
	  {
	    if(!$('#cecha_1_gripexcontrol').is(':visible'))
		{
	      $('.cecha_1.tresc').toggleClass('tresc-open');
          $('.cecha_1').children('div.tekst').toggleClass('tekst-none');	
		}
	    window.location= '/gripex/#cecha_1_gripexcontrol';
	  }
	  if($(this).hasClass('footer_logo5'))
	  {
	    
	    $('.cecha_3.tresc').toggleClass('tresc-open');
        $('.cecha_3').children('div.tekst').toggleClass('tekst-none');	
		
	    window.location= '/gripex/#cecha_moc_kapsulek';
	  }
	  
	});
	
	/*
    $('.footer_logo1').click(function(){

      $('.cecha_1.tresc').toggleClass('tresc-open');
      $('.cecha_1').children('div.tekst').toggleClass('tekst-none');
      window.location= '/#cecha_1_gripex';
    });
    $('.footer_logo2').click(function(){
      $('.cecha_1.tresc').toggleClass('tresc-open');
      $('.cecha_1').children('div.tekst').toggleClass('tekst-none');
      window.location= '/#cecha_1_gripexmax';
    });
    $('.footer_logo3').click(function(){
      $('.cecha_1.tresc').toggleClass('tresc-open');
      $('.cecha_1').children('div.tekst').toggleClass('tekst-none');
      window.location= '/#cecha_1_gripexnoc';
    });
    $('.footer_logo4').click(function(){
      $('.cecha_1.tresc').toggleClass('tresc-open');
      $('.cecha_1').children('div.tekst').toggleClass('tekst-none');
      window.location= '/#cecha_1_gripexcontrol';
    });
    */
    
    
     /* animacja dla video */
    if($('.jCarouselLite > ul > li').length > 1)
    {
      $(".jCarouselLite").jCarouselLite({
          btnNext: ".video_thumb_next_btn, .next",
          btnPrev: ".video_thumb_prev_btn, .prev",
          circular: true,
          visible: 2
      });
    }  
    
    
    /* open video after thumb clik */
     if($('#video_thumbs').length > 0 && $('#popup_content').length > 0)
    {
    $('#video_thumbs').each(function(){
      $(this).children('div').children('ul').children('li').children('a').click(function(event){
        event.preventDefault();

        var imgSrc = $(this).attr('href');
        if(imgSrc.indexOf('.flv') > 0 || imgSrc.indexOf('.f4v') > 0)
        {
          var flashvars = {  };
          var params = {
            bgcolor: "#FFFFFF",
            allowScriptAccess: "always",
            menu: "false",
            wmode: "transparent",
            flashVars: "movie=../"+imgSrc+"&autostart=false&startThumb=/images/player/startThumb.png&endThumb=/images/player/endThumb.png&iconColor=0xFF0000&progressBarColor=0xff0000&mainColor=0xffffff&bufferBarColor=0x989898&unbufferedBarColor=0xeeeeee"
          };
          swfobject.embedSWF("/player.swf", "popup_content", "600", "350", "6.0.65.0", "/swf/expressInstall.swf",  flashvars, params );
        }
        return false;
      });
    });
    $($('#video_thumbs').children('a')[0]).trigger('click');    
  }
});

   

