$(document).ready(function() {
	$('.newsDetail').hide();
	$('#newChannelForm').hide();
	$('#reviewerContact').hide();
	$('#authorizedUsers').hide();
    if($(".message"))
        $("div:not(.info).message").animate({opacity: '+=0'}, 5000).fadeOut('slow');	
    if($("#lastname"))
        $("#lastname").select();
    
    if($("#tabs"))
		$("#tabs").tabs();
    if($("#tabs2"))
		$("#tabs2").tabs();
    
	$(".zend_form").each(function (i,elem) {
		$(elem).closest("form").attr("action", "#"+$(elem).closest("div").attr("id"));
	});

    
    
    $("#reviewerContactButton").click(function () {   
     if ($("#reviewerLine").css("height") == "60px") {
    	 $("#reviewerLine").animate({ 
        	 height: 30
          }, 500);
         $("#reviewerContact").hide();   
     } else {
    	 $("#reviewerLine").animate({ 
        	 height: 60
          }, 500);
         $("#reviewerContact").show();      	 
     }
     
       
    });
    


});

function isIE(){
return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}
