/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */
$(function()
{	
	$(".film_data span.expand span").hide();
	$(".film_data span.expand").mouseover(function()
	{
		$("span", this).slideDown("fast");
		$(this).unbind("mouseover");
		return false;
	});
});


