jQuery(document).ready(function() {


    
/**
Img Fading
*/    
    
	$('ul#imgfader').innerfade({
		speed: 3000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '300px'
	});
   
    
    /**
Img Replace
*/  
    
    	$("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;
	});

    
    
    
    
    
});
