$jFeatured(document).ready(function(){
	
	$jFeatured(".homeVimeo").click(function(e) {
		e.preventDefault();
		$jFeatured.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'titleShow'		: false,
			'width'			: 600,
			'height'		: 450,
			'href'			: this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type'			: 'swf'
		});

		return false;
	});
	
	$jFeatured("a.sizeUpBtn").fancybox({
		'width'  : '700px',
		'height'  : '810px',
		'centerOnScroll':true,
		'onStart': saveSrc
	});
	
	$jFeatured("#sizeUpForm").validate();
	
	$jFeatured('#sizeUpForm input').blur(function() {
		if($jFeatured(this).hasClass('valid')) {
			$jFeatured(this).siblings('.formTick').show();
		} else {
			$jFeatured(this).siblings('.formTick').hide();
			console.log('error');
		}
	});
	
	$jFeatured('#sizeUpForm select').blur(function() {
		if($jFeatured(this).hasClass('valid')) {
			$jFeatured(this).siblings('.formTick').show();
		} else {
			$jFeatured(this).siblings('.formTick').hide();
		}
	});
	
});
