/*
 * Pics Changer Code 0.1
 *
 * By Trystan on 25/02/2010
 *
 * This was made quick and nasty in under an hour due to client coming in, feel free to improve!
 */

$(document).ready(function() {
	
	// Add event behaviour to mini images
	$('.pc_small-images').click(function() {
		
		// Replace big image with this clicked image inc. attributes
		$('.pc_big-image').attr('src', 		$(this).attr('src') );
		$('.pc_big-image').attr('alt', 		$(this).attr('alt') );
		$('.pc_big-image').attr('title', 	$(this).attr('title') );
		
	});
	
});