/**
 * JS: Global Effects
 * @author Dario Ruellan <druellan@ecimtech.com>
 */

$(function()
{
	// lindos rollover para el floater
	$('#floater a').hover(
		function (){
	        $(this).animate({
				marginRight: -5
			},100)
      	}, 
		function (){
	        $(this).animate({
				marginRight: 0
			})
      }
    );

});
