$(document).ready(function(){
	
	// Video Testimonials
	$(".testimonial1").colorbox({href:"../flash/testimonial1.html", transition:"elastic"});
	$(".testimonial2").colorbox({href:"../flash/testimonial2.html", transition:"elastic"});
	$(".testimonial3").colorbox({href:"../flash/testimonial3.html", transition:"elastic"});
	$(".testimonial4").colorbox({href:"../flash/testimonial4.html", transition:"elastic"});

	// bind to colorbox to disable the main videos
	var videocontainer;
	$().bind('cbox_open', function(){
		//videocontainer = $('#player').parent();
		//videocontainer.html('');
	});
	$().bind('cbox_closed', function(){
		// re-embed the video (old swfobject method as not sure if current is latest version
		//s1.write(videocontainer.attr('id'));
	});
	

	// Press Articles
	$("a[rel='press']").colorbox();
	$("a[rel='press_text']").colorbox({width:"75%", height:"75%"});
	
	//Testimonials - Before & Afters
	$("a[rel='testimonials_1']").colorbox();
	$("a[rel='testimonials_2']").colorbox();
	$("a[rel='testimonials_3']").colorbox();

});

