$(function() {
	$('.field, textarea').focus(function() {
        if(this.title==this.value) {
            this.value = '';
        }
    }).blur(function(){
        if(this.value=='') {
            this.value = this.title;
        }
    });

    $('a[class*="popup"]').fancybox({
    	transitionIn: 'elastic',
    	transitionOut: 'elastic',
    	padding: 1
    });
    
    $("#keen_intro").fancybox({
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'width'			: 650,
		'height'		: 365,
		'href'			: 'http://vimeo.com/moogaloop.swf?clip_id=28754305&autoplay=1',
		'type'			: 'swf'
	});
});
