$(document).ready(function() { 
	    
	// run nav
	$("#nav").threeTierNav();		
	
	// run calendar
	$("#calendar").compactCal();         
	
	// setup slideshow
	$.ajax({
        type: "GET",
		url: "/xml/sb_brookswood/rotatingStory1.xml",
		dataType: "xml",
		success: function(slide_xml) {
			setupHTMLandSlideshow(slide_xml);
		}
	}); 
	
}); 
     
    

// SLIDESHOW CODE
// --------------------------------

var home_slideCount = 0;

function setupHTMLandSlideshow(slide_xml) {
	// setup html                       
	var newHTML = "";
	$(slide_xml).find('story').each(function(){
		newHTML += "<div><a href='" + $(this).attr('pageLink') + "'><img src='" + $(this).attr('imageLink') + "' /></a></div>";
		home_slideCount++;
	});                                                                                                                     
		
	$("#home_slider").html(newHTML);
	$("#home_slider").cycle({
		fx: "fade", prev: "#home_slideshow .prev", next: "#home_slideshow .next", speed: 1000, timeout: 4000, pause: 1, before: slideUpdated
	});                                                                                                  
	$("#home_slideshow .num").html("1/" + home_slideCount);
	
}                                            

function slideUpdated(a, b, opts) {
	$("#home_slideshow .num").html((opts.nextSlide + 1) + "/" + home_slideCount);
}        
