$(document).ready( function () {

	$('img#cimg_images1').click( function () {
	$('img#img_first').fadeOut("slow", function () {
		$('img#img_first').attr('src', $('img#cimg_images1').attr('src') );
		$('img#img_first').fadeIn("slow");
		$('a#href_first').attr('href', $('img#cimg_images1').attr('src') );
	} );
	} );

	$('img#cimg_images2').click( function () {
	$('img#img_first').fadeOut("slow", function () {
		$('img#img_first').attr('src', $('img#cimg_images2').attr('src') );
		$('img#img_first').fadeIn("slow");
		$('a#href_first').attr('href', $('img#cimg_images2').attr('src') );
	} );
	} );

	$('img#cimg_images3').click( function () {
	$('img#img_first').fadeOut("slow", function () {
		$('img#img_first').attr('src', $('img#cimg_images3').attr('src') );
		$('img#img_first').fadeIn("slow");
		$('a#href_first').attr('href', $('img#cimg_images3').attr('src') );
	} );
	} );

} );


