// JavaScript Document

$(function() {

	function hide() {
		$('#first_offer_img,#second_offer_img,#third_offer_img').hide();
	}
	
	hide();
	
	$('div#offers span h3').click(function() {
		var id = $(this).attr('id');
		$('img#main').hide();
		hide();
		$('img#' + id + '_img').show();
	});
		   
});
