var browser = navigator.userAgent;$(document).ready(function(){	$('#bola_tendencias').easydrag();		//Efecto Mango		$("#mango").append("<em></em>");		$("#mango").hover(function(){			$(this).find("em").animate({opacity: "show",top:"-75"},"slow");			var hoverText = "Este otoño viste la colección Fiesta de Mango";			$(this).find("em").text(hoverText);		}, function(){			$(this).find("em").animate({opacity: "hide", top: "-85"},"fast");		})		//Publicidades		$("#love_factory").click(function(){			window.location.href= 'http://www.fiestalovefactory.com';		});		$("#personaliza").click(function(){			window.location.href= 'http://www.nuevofordfiesta.com';		});		$("#mango_love").click(function(){			window.location.href= 'http://www.maskedummies.com/?seccion=3&subseccion=1';		});});		function move(maximo){		if( document.getElementById )	{		 window.onscroll = function(){		 obj = document.getElementById('bola_tendencias');			 if((browser.lastIndexOf("Safari") != -1)		 				||(browser.lastIndexOf("Opera") != -1 )){					var top = 150;					}else{					var top = 150;					 }		 			 var moveTop = ((document.body.scrollTop)?document.body.scrollTop:document.documentElement.scrollTop);					//Si el maximo es 500 por ejemplo, no funcionaría el movimiento ya que se saldría del contenedor			 if(moveTop < maximo)			 {						 obj.style.top = moveTop + top + 'px';			 }				}	}}
