$(function() {
	$('.no-js').removeClass('no-js');
	
	
/*No Javascript*/
$("#testimonials").removeClass("hide-div");
	
/* Testimonial popup */
	var testimonialCount = 0;
	$('.testimonial').each(function() {
		var a = $(this).find('a');
		var embed = $(this).find('.testimonial-popout');
		
		/*var id = 'testimonial-' + ++testimonialCount;
		$(a).attr('href', '#' + id);
		$(embed).attr('id', id);*/
		
		$(a).fancybox({titleShow:false,transitionIn:'elastic',transitionOut:'fade',speedIn:'600'});
	});
	
	
});
