$(document).ready(function(){
        $('#home_video_button a').fancyZoom({width:425, height:344});
        $('#home_video_button2 a').fancyZoom({width:425, height:344});

        $(".big_logo_buttons a").hover(

            function () {
                $(this).children("img").animate({
                    top: '-=145px',
                    left: '-=0px',
                    marginLeft: '-=0px',
                    marginRight: '-=0px',
                    paddingLeft: '-=0px',
                    paddingRight: '-=0px'
                }, 200, function() {
                    // Animation complete.
                });
            }, 
            function () {
                $(this).children("img").animate({
                    top: '+=145px',
                    left: '+=0px',
                    marginLeft: '+=0px',
                    marginRight: '+=0px',
                    paddingLeft: '+=0px',
                    paddingRight: '+=0px'
                }, 200, function() {
                    // Animation complete.
                });
            }

        );

        $("#intro_buttons li a").mouseover(function(){
											   
		var target = $(this).attr("href");
                
                $(this).parent().siblings().children().removeClass("active");
                $(this).addClass("active");
		
		$($(target)).siblings("div").fadeOut("normal", function() {
		    $($(target)).fadeIn("normal", function() {
			//Fixes IE's clear-type issue on animated fonts
			if(jQuery.browser.msie) this.style.removeAttribute('filter');
		    });
		});
	});

});
