/* Site-wide JavaScript */

jQuery(document).ready(function($) {
	$(".defaultText").focus(function(srcc)
    {
        if ($(this).val() == "Sign up for MT BORAH E-mail")
        {
            $(this).removeClass("defaultTextActive");
            $(this).val("");
        }
    });
    
    $(".defaultText").blur(function()
    {
        if ($(this).val() == "")
        {
            $(this).addClass("defaultTextActive");
            $(this).val("Sign up for MT BORAH E-mail");
        }
    });
    
    $(".defaultText").blur().addClass("defaultTextActive");    
    
	$("a.fancybox").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity':	0.65,
		'overlayColor'	:	'#000',
		'titlePosition' :	'over'
	});
	
	$(".vidbox").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
				   	'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	
	$(".3Dswf").fancybox({
		'titleShow'			: false,
	    'padding'           : 0,
        'autoScale'     	: false,
        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'width'				: 470,
		'height'			: 470
	});
	
	$(".slider").easySlider({
		'speed'				: 300,
		'continuous'		: true,
		'prevText'			: '',
		'nextText'			: ''
	});
	
});


