$(function() {

	$('#subForm input[title]').each(function() {
		var $this = $(this);
		if($this.val() === '') {
			$this.val($this.attr('title')).addClass("unselected");
		}
		$this.focus(function() {
			if($this.val() === $this.attr('title')) {
				$this.val('').removeClass("unselected").addClass("focused");
			}
		});
		$this.blur(function() {
			if($this.val() === '') {
				$this.val($this.attr('title')).removeClass("focused").addClass("unselected");
			}
		});
	});

	$('#showreel').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '430px'
	});

	$("tr:nth-child(odd)").addClass("odd");

	$("#vgallery a").fancybox({
		'titlePosition'			: 'outside',
		'padding'			: 0,
		'overlayColor'		: '#10130e',
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'overlayOpacity'	: 0.85
	});

	// $('a[href^="http"],a[rel=external]').not('[href*="MYDOMAIN.COM"]').attr('target','_blank');

	// $('<a href="#printPage">Print this page</a>').click(function(){window.print();}).appendTo("myID-CLASS");

});
