$(function() {
	$('#p_pics').galleryView({
		background_color: 'white',
		border: 'none',
		panel_width: 182,
		panel_height: 182,
		transition_interval: 0,
		nav_theme: 'dark',
		transition_speed: 900,
		easing: 'easeOutBounce',
		frame_width: 47,
		frame_height: 47
	});

	$(".panel a").fancybox({
		'titleShow' : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'speedIn'		: 500,
		'speedOut'		: 500
	});

	//Source video
	var video_path = $('#video span').html();
	$('#video span').remove();
	
	if($('#video').length > 0){
		$('#video').flash({
			swf: '../assets/videos/player/jcplayer.swf',
			width: '180',
			height: '205',
			flashvars: {
				videoURL: video_path,
				autoPlay: 'false',
				startPhotoSource: '../assets/videos/photo.jpg',
				highlightColor: '0xf14c12',
				backgroundColor1: '0x333333',
				backgroundColor2: '0x222222',
				timeBar: 'false',
				fullScreenButton: 'false'
			}
		});
	}
	
	$('.tabs').tabs();
	
	$(".popup").colorbox();

//	addValidationToColourBoxForm("#review-form");
//	addValidationToColourBoxForm("#match-form");
});

