(function($) {
	jQuery(function(){
		var galleryId;
		$.each($('.gallery'),function(i,obj){
			galleryId = obj.id;
			$('#' + galleryId + ' a').attr('rel',galleryId);
		});
		
		
		$('.post img').closest('a').colorbox({
			transition:'elastic',		//Can be set to "elastic", "fade", or "none".
			speed:500
		});

		if (document.getElementById('your-zip')){
			document.getElementById('your-zip').onkeyup = function(){
				AjaxZip2.zip2addr(this,'your-address','your-address');
			};
		}
		
		$(function(){
			$('#rap').fadeIn(1000);
		});
	});
})(jQuery);

