/*
	===========================================================
	Cimarron Animal Hospital - Interface - Crunch.js
	Author: Mark C. Garity, Anchorwave.com
	===========================================================
	Description: jQuery Initialization.
	===========================================================
*/

jQuery(function( $ ){	
	
	// Cufon Font Replacement (Arial Rounded MT Bold)
	Cufon.replace('h1');
	Cufon.replace('h2');
	Cufon.replace('h3');
	
	// Colorbox Setup (fancy lightboxes)
	$('a.colorbox').colorbox({speed:500, initialWidth:"100px", initialHeight:"100px", width:"600px"}, function() { Cufon.replace('h1'); });
	
	/*
	// Hover Effect Items
	$('#navigation li a').addClass('hover-effect');
	
	
	$('.hover-effect').append('<span class="hover"></span>');
	$('.hover-effect').hover(function() {	
		// Stuff that happens when you hover
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 10, 'easeOutSine')
	},function() {
		// Stuff that happens when you unhover
		$('.hover', this).stop().animate({
			'opacity': 0
			}, 1000, 'easeOutExpo')
	})
	*/
})
