$(document).ready(function() {
    $('ul.sf-menu').superfish();
    $(".messages").slideDown('slow', function() {
        setTimeout(function() {
            $(".messages").slideUp('slow', function() {
                $(this).remove();
        })}, 3000);
    });

    $("a[rel=video]").click(function() {
        $.fancybox({
                'padding'		: 0,
                'autoScale'		: false,
                'transitionIn'	:	'elastic',
                'transitionOut'	:	'elastic',
                'title'			: this.title,
                'width'		: 720,
                'height'		: 439,
                'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
                'type'			: 'swf',
                'swf'			: {
                     'wmode'		: 'transparent',
                    'allowfullscreen'	: 'true'
                }
            });

        return false;
    });

     $('input[name=email]').focus(function() {
        if($(this).val() == 'Enter your email here')
        {
            $(this).val('');
        }
    });
});

