try { Cufon.replace('h2.add-comment, .big-date h3, .big-date span, .work-slider h3,.post-title-block h3,#contact-block h3,blockquote p strong,.slider-box h3,#sidebar h2,.testimonial-block h2,.box-row h3,.sidebar h1,#content h1,#navigation ul li a,#contact-block .call p,ul.nav-box li a strong,.side-link-cnt p a,.side-link-holder a,.box h2,.not-found h2,.not-found h3'); }catch(e){ /* Catch */	}

$(document).ready( function (){ 

	
	
	

	// -----------------------------
	// Box Hovers
	// -----------------------------
	$('.box-holder a.hover').stop().animate({'opacity': 0}, 0);
	$('.box-row').hover(function() {
		$(this).find('.box-holder a.hover').stop().animate({'opacity': 1}, 200,'easeOutSine');
	}, function() {
		$(this).find('.box-holder a.hover').stop().animate({'opacity': 0}, 300, 'easeOutQuad');
	});
	
	
	// -----------------------------
	// Our Work Hovers
	// -----------------------------
	$('.white-box').hover(function() {
		$(this).find('.work-slider').stop().animate({'top': '0'}, 400,'easeOutExpo');
	}, function() {
		$(this).find('.work-slider').stop().animate({'top': '218px'}, 400, 'easeInOutExpo');
	});


	// -----------------------------
	// Blue Box Hovers
	// -----------------------------
	$('span.blue-hover').stop().animate({'opacity': 0}, 0);
	$('.silver-box').hover(function() {
		$(this).find('span.blue-hover').stop().animate({'opacity': 1}, 200,'easeOutSine');
	}, function() {
		$(this).find('span.blue-hover').stop().animate({'opacity': 0}, 300, 'easeOutQuad');
	});
	
	
	// -----------------------------
	// Click the Box
	// -----------------------------
	$('.silver-box').click(function(){
		var linkHREF = $(this).find('h3 a').attr('href');
		location.href = linkHREF;
	});
	
});
