$(function () {
						   
	$(".latest_img").fadeTo("slow", 0.4);
		$(".latest_img").hover(function(){
			$(this).fadeTo("slow", 1.5);
			},function(){
				$(this).fadeTo("slow", 0.4);
	});
	
	
	$('.right-wrapper').pngFix();
	
	
 	var img = new Image();
  
	$(img).load(function () {
		$(this).hide();
		$('#main_image').removeClass('loading').append(this);
		$(this).fadeIn();
	}).error(function () {
		// notify the user that the image could not be loaded
	}).attr('src', 'images/phoem_two.jpg');	
	
	$("#image_one").click(function() {
		$("#main_image").hide();
		
		$("#main_image").fadeIn().html('').addClass('loading').fadeTo(1000,1,function() {
			$(img).load(function () {
				$(this).hide();
				$('#main_image').removeClass('loading').append(this).fadeTo(1000,1);
				$(this).fadeIn();
			}).error(function () {
				// notify the user that the image could not be loaded
			}).attr('src', 'images/phoem_one.jpg');	
		});
	});
	
	$("#image_two").click(function() {
		$("#main_image").hide();
		
		$("#main_image").fadeIn().html('').addClass('loading').fadeTo(1000,1,function() {
			$(img).load(function () {
				$(this).hide();
				$('#main_image').removeClass('loading').append(this).fadeTo(1000,1);
				$(this).fadeIn();
			}).error(function () {
				// notify the user that the image could not be loaded
			}).attr('src', 'images/phoem_two.jpg');	
		});		
	});
	
	$("#image_three").click(function() {
		$("#main_image").hide();
		
		$("#main_image").fadeIn().html('').addClass('loading').fadeTo(1000,1,function() {
			$(img).load(function () {
				$(this).hide();
				$('#main_image').removeClass('loading').append(this).fadeTo(1000,1);
				$(this).fadeIn();
			}).error(function () {
				// notify the user that the image could not be loaded
			}).attr('src', 'images/phoem_three.jpg');	
		});
	});
	
});