Cufon.replace('.testimonial-box p');
$( document ).ready( function(){
	check();
	$('.side-tabs .tabs a').live('click', function () {
		var href = $(this).attr('href');
		var tabs = $(this).parents('.side-tabs:eq(0)').find('.tab-cnt-holder:eq(0)');
		$(this).parents('.tabs:eq(0)').find('a').removeClass('active');
		$(this).addClass('active');
		tabs.find('.tab-cnt').hide();
		$(this).parents('.side-tabs').find(href).show();
		return false;
	})
	$('.drop-down-holder .drop-down-link h2 a').live('click', function () { 
		$(this).parents('.drop-down-holder').find('.drop-down-cnt').slideToggle();
		return false;
	})
});
function check() {
	var href = $('.side-tabs .tabs a.active').attr('href');
	$(href).show();
};
