﻿/*
$(document).ready(function() {

    if ( $('#offers div div div').length > 0 )
        marquee( $('#offers div div div div').mouseover( function(){ $(this).stop(); }).mouseout( function(){ marquee($(this)); }) );

}); 
function marquee(e)
{
	var h = ((e.height()<190) ? 190: e.height())+190;
    e.animate({"top": "-="+ h +"px"}, 30000 , function(){ $(e).css('top','190px'), marquee(e) });
}
*/