/**
 * for ortv uk website script
 * @2011
 **/

$(document).ready(function(){    
	    
    $(".lang").click(function () {
      $(".change").toggle();
    });

     $('.tab_photo').click(function(){
     	$(this).addClass('active');
     	$(this).next().removeClass('active');     	
     	$(this).parents().find('.comment').hide();
     	$(this).parents().find('.photo').slideDown();
     });
     
     $('.tab_comment').click(function(){
     	$(this).prev().removeClass('active');
     	$(this).addClass('active');     	
     	$(this).parents().find('.photo').hide();
     	$(this).parents().find('.comment').slideDown();
     });     
         
});
