$(document).ready(function(){

	if($('#shareCallout').length >= 1){
		$('#shareCallout').animate({
			opacity: 1,
			top: '-=10'
		}, 500, function(){
			$('#shareCallout').delay(2500).animate({
				opacity: 0,
				top: '+=10'
			}, 250);
		});

	}

	// Fancybox for gallery cat images
	$('.fancybox').live('click', function(e){
		e.preventDefault();
		$.fancybox({
			'titleShow'     : false,
			'href'	: $(this).attr('href')
		});
	});

	$(".txtClear").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	}); 

	$('#nav li').mouseenter(function() {
		$(this).addClass('sfhover');
  }).mouseleave(function(){
		$(this).removeClass('sfhover');
  });


}); // end docReady
