$(document).ready(function(){
	$("h2").append('<small></small>')

	$(".thumbs a").hover(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h2 small").html(" " + largeAlt + " "); 
		return false;
	});
	
});

$(document).ready(function(){

	$("h2").append('')

	$(".thumbs a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h2 small").html(" " + largeAlt + " "); 
		return false;
	});
	
});

  $(document).ready(function(){
    
	$("h1").append('')
    $(".thumbs img").click(function () {
      $(this).css("opacity", "1");
	  $(this).css("border-bottom","6px #fff solid");
	  
	 
    });
	
    
});

	
	
	

// JavaScript Document