$(document).ready(function(){
	
	$.ajax({
		type: "GET",
		url: "/xml/banners.xml",
		dataType: "xml",
		success: parseXml
	});
	
	function parseXml(xml){
		$("#slider").empty();
		$(xml).find("Banner").each(function(){
			var a = $('<a>').attr('href', $(this).find("PageHref").text()); 
			var img  = $('<img />').attr({
				src: $(this).attr("src"),
				alt: $(this).attr("alt")
				});
			a.append(img);	
			$("#slider").append(a);
		});
		$('#slider').nivoSlider();
	};
	
	function hideImages(){
		$('#slider img').each(function(){
			$(this).attr('style', "display:none");
		});
	};
	
	/*$("li.more a").mouseover(function() {
        $(this).parent().children().fadeIn();
    });

    $("li.more a").mouseout(function() {
            $(this).parent().children('ul').fadeOut();
});*/

	
});
