function closeBug() {
	$("#fab2farm_bug_info").animate({height:'0px'}, 300, function(){
		$("#fab2farm_bug_info").css('display','none');
	});
	
	$('#fab2farm_bug_arrow').attr('src','/assets/images/icons/bug_fab2farm_arrow_down.jpg');
	
}

$(document).ready( function() {
		//Video Switcher
	 	// Hide all large images except the first one
        $('.imageContainer img').hide().filter(':first').show();
	
		$(".vid_load a:first").addClass("activated");
        // Select all thumb links
        $('.vid_load a').hover(function(event) {
				$(".vid_load a").removeClass("activated");
				$(this).addClass("activated");
                // Hide all large images except for the one with the same hash as our thumb link
                $('.imageContainer img').hide().filter(this.id).show();
            },
            function () {

            } // Because the hover method has a mouseout state we need to define too
        );
	    //End Video Switcher
   
	$('#fab2farm_bug_container').mouseenter(function() {
		
		$("#fab2farm_bug_info").animate({height:'88px'}, 300);
		$('#fab2farm_bug_arrow').attr('src','/assets/images/icons/bug_fab2farm_arrow_up.jpg');
	});
	
	$('#fab2farm_bug_container').mouseleave(function() {
		
		timer = setTimeout("closeBug();",300);
	});
	

	
});