$(function(){
	
	$(document).pngFix();
	
	if(typeof(Xslider) != "undefined"){
		var mscenter_slider = Xslider.init('#header', '#caption', [
		{
			"main_image": "homepage_top3.jpg",
			"image_title": "",
			"image_position": ""
		},
		{
			"main_image": "homepage_top2.jpg",
			"image_title": "",
			"image_position": ""
		},
		{
			"main_image": "homepage_top1.jpg",
			"image_title": "",
			"image_position": ""
		}
	], 5000);	
	}
				
	

	var body_classes = $("body").attr("class").split(" ");

	// Assign the main nav active state
	$("#main_nav").find("."+body_classes.shift()).parent().addClass("active");

	// Assign the section nav classes
	// If there is only one
	add_section_class("."+body_classes.pop(), "active");
	for( body_class in body_classes ){
		add_section_class("."+body_classes[body_class], "active_parent");
	}
	
	wcmc.footer_modal.init();

});	

function add_section_class(class_selector, class_to_add){
	$("#section_nav").find(class_selector).parent().addClass(class_to_add);
}

