/*  JP Home SoupeKitchenRefresh 2009  */

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


