/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){

    // repositioning!
	$('#header-photo-block').append($('#header-photo-block-temp'));
  
	// attach to_digits() to zip code keyup event
	$('#zip').bind('keyup', function(){
		to_digits( $(this).attr('id'), true );
	});		


});//ready



