$(function() {
	/*$('.popupClick').click(function() {
		$('.siteCreditPopup').show();
		return false;
	});
	
	$('body').click(function() {
		$('.siteCreditPopup').hide();
	});*/
	
	$('.option1').click(function() {
		$('.frontBanner1').show();
		$('.frontBanner2').hide();
		$('.frontBanner3').hide();
		$('.frontBanner4').hide();
		//return false;
	});
	$('.option2').click(function() {
		$('.frontBanner1').hide();
		$('.frontBanner2').show();
		$('.frontBanner3').hide();
		$('.frontBanner4').hide();
		//return false;
	});
	$('.option3').click(function() {
		$('.frontBanner1').hide();
		$('.frontBanner2').hide();
		$('.frontBanner3').show();
		$('.frontBanner4').hide();
		//return false;
	});
	$('.option4').click(function() {
		$('.frontBanner1').hide();
		$('.frontBanner2').hide();
		$('.frontBanner3').hide();
		$('.frontBanner4').show();
		//return false;
	});
}); 