/*  JP Home SoupeKitchenRefresh 2009  */

$(document).ready(function(){
    $('#alertbar').hide();
    $.ajax({
        type: "GET",
        url: "/jp/home/alerts.xml",
        dataType: "xml",
        success: function(xml) {	
            $(xml).find('alert').each(function(){
				$('#mainHero').height("425px");				
				$('#alertbar').show();
				$('#container').css("top","725px");				
				$('#scrollLine').css("top","719px");				
                var description = $(this).find('description').text();
                var source = $(this).find('source').text();
				if (source != ""){
					$('<p class="alert"></p>').html('<a href="'+source+'">'+description+'</a>').appendTo('#alertbar');
				}else {
					$('<p class="alert"></p>').html(description).appendTo('#alertbar');
				}
            });
        }
    });
});

