
$(document).ready(function(){
	
	// Replace alphabetic navigation separator
	$(".snap_nav li").each(function() {
	   $(this).html($(this).html().replace(/-/g,"&nbsp;/&nbsp;"));
	});
	
	// ColorBox on Single Page Billboard
	$('a#cbox').colorbox({
		height: '80%'
	});
	
	// Reset Inputs on focus
	$("input[type=text]").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
});
