 $(document).ready(function() {	
	$('.twitter-off, .facebook-on, .myspace-on').hide();
	$('#tabs').tabs({ fx: {} });
	$('.facebook-off').bind('mouseenter', function() {
						$('.facebook-on, .twitter-off, .myspace-off').show();
						$('.facebook-off, .twitter-on, .myspace-on').hide()
	});
	
	$('.twitter-off').bind('mouseenter', function() {
		
						$('.facebook-off, .twitter-on, .myspace-off').show();
						$(".facebook-on, .twitter-off, .myspace-on").hide()
	});
	
	$('.myspace-off').bind('mouseenter', function() {
						$('.facebook-off, .twitter-off, .myspace-on').show();
						$('.facebook-on, .twitter-on, .myspace-off').hide()
	});

    $("#panel-filmmaker").bind("mouseenter",function(){
     $(".box-filmmaker").removeClass("hidden");
     $(".box-crew,.box-actor").addClass("hidden")
    });

    $("#panel-crew").bind("mouseenter",function(){
     $(".box-crew").removeClass("hidden");
     $(".box-filmmaker,.box-actor").addClass("hidden")
    });

    $("#panel-actor").bind("mouseenter",function(){
     $(".box-actor").removeClass("hidden");
     $(".box-filmmaker,.box-crew").addClass("hidden")
    });
   
    $("#header-contents").bind("mouseleave",function(){
     $(".box-filmmaker,.box-crew,.box-actor").addClass("hidden")
    });		 
 });

	 
	 
