$(document).ready(function () {
							
	var $panels = $('#formats .format .extraInfo');
	
	$("div.extraInfo a.close_box").click(function()
	{
		$panels.hide('200');
	});
	
	$("div#formats a.more_info").hover(function()
	{
		$panels.hide('200');
		$(this).next().show('200');
	});
	
	$("div#actions input").hover(function() {
		$panels.hide('200');
	});
	
});
