$(function() {
	// scroll to all local anchors
	$.localScroll({
		duration: 500,
		hash: true
	});

	// scroll to top
	$('.top-link a').click(function() {
		$.scrollTo( 0, 500);
		return false;
	});


	// highlight active form section
	$('input').focus(function() {
		$(this).closest('li').addClass("active");
	});
    $('input').blur(function() {
    	$(this).closest('li').removeClass("active");
    });
	$('select').focus(function() {
		$(this).closest('li').addClass("active");
	});
    $('select').blur(function() {
    	$(this).closest('li').removeClass("active");
    });

	// play youtube video with fancybox
	$(".youtube").colorbox({iframe:true, innerWidth:854, innerHeight:480, opacity:0.65});

});

