$(document).ready(function(){
	
	$('.swapImg').click(function(){
		   $('#largeImg').attr('src', this.rel); 
	});
	
	$('.galImg').click(function(){
		   $('#mainImg').attr('src', this.rel);
		   imgNumber = this.id;
	}); 
	
	$('.nextCal').click(function(){
		   //alert("okay");
		   $(this.rel).attr('class', "show");
		   var current=this.href;
		   var the_length=current.length;
		   var last_char=current.charAt(the_length-1);
		   $('#pricesPage'+last_char).attr('class', "hide");
	});	
	
});





