<!-- IMAGE CHANGE -->
$(document).ready(function(){

	$("h2").append('<em></em>')

	$(".thumbs a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h2 em").html(" (" + largeAlt + ")"); return false;
	});
	
});
<!-- /IMAGE CHANGE -->
<!-- LightBox -->
    $(document).ready(function() {
        $("a[rel='external']").click(function(event){
            window.open($(this).attr("href"));
            event.preventDefault();
        });
       
        $('a[@rel*=lightbox]').lightBox();
        
    });
<!-- /LightBox -->    




