
//test
	/*$('.thumbnail img').hover(
		function(){
		$(this).css({'opacity':'1'});
	},
	function(){
		$(this).css({'opacity':'0.3'});
	}
	);*/
	function imgGallery(){
		
	$('.thumbnail').click(function(){
		$(this).siblings('.active').removeClass('active');
		$(this).siblings('.op1').removeClass('op1');
		$(this).addClass('active');
		
		$('[id=i_main_'+this.id+']').siblings('.i_mainShow').css({'display':'none'}).removeClass('i_mainShow');
		$('[id=i_main_'+this.id+']').fadeIn('slow').addClass('i_mainShow');
	});
	
	$('.i_description_box span.collapse').click(function(){
		$(this).siblings('.i_description').slideToggle('slow');
		var c_s=$(this).text();
		if(c_s=='Show info'){
			$(this).text('Close info');
		}else{
			$(this).text('Show info');
		}
	});
	$('.i_video_box span.collapse').click(function(){
		$(this).siblings('.i_video').slideToggle('slow');
		var c_s=$(this).text();
		if(c_s=='Show video'){
			$(this).text('Close video');
		}else{
			$(this).text('Show video');
		}
	});
	
	}

