/*  UK Home SoupeKitchenRefresh 2009  */

$(document).ready(function(){
	var usbar = true;
    $('#alertbar').hide();
    $.ajax({
        type: "GET",
        url: "/uk/home/alerts.xml",
        dataType: "xml",
        success: function(xml) {	
            $(xml).find('alert').each(function(){
				$('#mainHero').height("425px");				
				$('#alertbar').show();
				$('#container').css("top","724px");				
				$('#scrollLine').css("top","718px");				
                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');
				}
				usbar = false;
            });
        },
        complete: function() {
        	if (usbar) {
	    	    $.ajax({
	    	        type: "GET",
	    	        url: "/uk/home/alerts_english.xml",
	    	        dataType: "xml",
	    	        success: function(xml) {	
	    	            $(xml).find('alert').each(function(){
	    					$('#mainHero').height("425px");				
	    					$('#alertbar').show();
	    					$('#container').css("top","724px");				
	    					$('#scrollLine').css("top","718px");				
	    	                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');
	    					}
	    	            });
	    	        }
	    	    });
        	}
        }
    });
});
