jQuery(function(){	

	var ie55 	= (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 	= (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	if (jQuery.browser.msie && (ie55 || ie6)) {
		jQuery("#registro").css('z-index','50');
		
		jQuery(".iniciar").click(function(){
				jQuery("#registro").animate( { top:"8px" },400);
				return false;
		});		
		jQuery("#contenidos").mouseover(function() {
					jQuery("#registro").animate( { top:"-84px" },400);
		});
	} else {
		jQuery(".iniciar").mouseover(function(){
				jQuery("#registro").animate( { top:"8px" },400);
		});
		jQuery(".iniciar").click(function(){
				jQuery("#registro").animate( { top:"8px" },400);
				return false;
		});
		jQuery("#contenidos").mouseover(function() {
					jQuery("#registro").animate( { top:"-84px" },400);
		});
	}
});