	jQuery(function() {
	    swapValues = [];
	    jQuery(".swap_value").each(function(i){
	        swapValues[i] = jQuery(this).val();
	        jQuery(this).focus(function(){
	            if (jQuery(this).val() == swapValues[i]) {jQuery(this).val("");}
	        }).blur(function(){
	            if (jQuery.trim(jQuery(this).val()) == "") {jQuery(this).val(swapValues[i]);}
	        });
	    });
	});
	$(document).ready(function(){
		$('#login_button').click(function(){
			$('#slide_down_wrapper').animate({top: '0'}, 1000);
			$('#login_button_space').hide();
			$('#close_button_space').show();
			return false;
		});
		$('#close_button').click(function(){
			$('#slide_down_wrapper').animate({top: '-115px'}, 1000);
			$('#close_button_space').hide();
			$('#login_button_space').show();
			return false;
		});
		$(".colorbox_photo").colorbox({
			maxWidth: "95%", 
			maxHeight: "95%", 
			photoScaling: "true", 
			opacity: .75});
		$(".colorbox").colorbox({
			opacity: .75
		});
		$(".colorbox_iframe").colorbox({width:"940px", height:"750px", iframe:true});
	});
