// JavaScript Document

var bbo_module_roll;
var bbo_module_roll_speed=50;
var bbo_module_roll_minus=20;
var bbo_module_roll_max_height=264;
var bbo_module_roll_min_height=100;


$(function(){		   
	$(".modules li").hover(function(){
		roll_start($(".modules li").index($(this)));
	},function(){
		roll_end($(".modules li").index($(this)));
	});
	
});

function roll_start(index)
{
	$(".modules li:eq("+index+") .images").dequeue().animate({height:"110px"},700);
}

function roll_end(index)
{
	$(".modules li:eq("+index+") .images").dequeue().animate({height:"264px"},700);
}
