$(document).ready(function() {
	$('div#toggle').hide();
	$('a#add_address').click(function() {
		$('div#toggle').slideToggle('slow');
	});
});
$(document).ready(function() {
	$('div#billing_address').hide();
	$('.check').click(function() {
		$('div#billing_address').slideToggle('slow');
	});
});

$(document).ready(function(){
  $('div#images a.switch').click(function() {
    $('#placeholder').attr('src', this.getAttribute ('href'));
    return false;
  });
  $('#placeholder').load(function(){$(this).fadeIn('slow');});
});

//$(document).ready(function() {
	//$('a.fancy').fancybox();
//});

$(document).ready( function(){
	$(".city_select").hide();
	$('.city_select:first').show();

	$(".city_selectClick").click( function(e){
		e.preventDefault();

		$(".city_select").hide( "slow" );
		$("#city_select").html("");
		var elmName = "city_select" + $(this).text();

		if( $("#" + elmName).length > 0 ){
			$("#" + elmName).slideToggle( "slow" );
		}
	});
});



