$(document).ready(function() {
	$(document).pngFix(); 
	
	$('.navHeader').hover(
	function() { $('ul', this).css('display', 'block'); },
	function() { $('ul', this).css('display', 'none'); });
	
	$('a.deluxe').lightBox();
	$('a.standard').lightBox();
	$('#gallery a').lightBox();
		
	$('#pics, #overviewPics').cycle({ 
		fx:    'fade', 
		speed:  2500,
		random: 1,
		timeout:  10000 
	 });
	
	$('#allSlide').cycle({ 
		fx:    'fade', 
		speed:  2500,
		timeout:  7000,
		next:   '#allNext', 
		prev:   '#allPrev' 
	 });
	
	$('input[type=text], textarea').each(function() {  
	 $(this).focus(function() { 
	  if($(this).val() == this.defaultValue) 
	    $(this).val(""); 
	  }); 
	  $(this).blur(function() { 
	    if($(this).val() == "") 
	      $(this).val(this.defaultValue); 
	  }); 
	});
});

Cufon.replace('h2', { fontFamily: 'BryanReg' });
Cufon.replace('h3', { fontFamily: 'BryanReg' });


