$(document).ready(function(){
	
	$("#tn1").click(function(){
	  	$("#image_holder").empty();
		$("#image_holder").append(gallery[0]);
		//$("*").removeClass("thumb_active");
		//$("#thumb1").addClass("thumb_active");
 	});	

	$("#tn2").click(function(){
	  $("#image_holder").empty();
	 $("#image_holder").append(gallery[1]);
	
 	});
	$("#tn3").click(function(){
	  $("#image_holder").empty();
	 $("#image_holder").append(gallery[2]);
	
 	});

	$("#tn4").click(function(){
	  $("#image_holder").empty();
	 $("#image_holder").append(gallery[3]);
	 
 	});

	$("#tn5").click(function(){
	  $("#image_holder").empty();
	 $("#image_holder").append(gallery[4]);

 	});

	$("#tn6").click(function(){
	  $("#image_holder").empty();
	 $("#image_holder").append(gallery[5]);

 	});
   
 });

