// JavaScript Document
$(window).load(function() {
	$('#header').load('header.html');
	$('#footer').load('footer.html');
	$('#menu').load('menu.html',function(){
		$('#menu >  ul > li > a').click(function(){
			if($(this).parent().children('ul').size()==1){
				if(document.getElementById('slider'))
					$('#slider').data('nivoslider').stop(); //Stop the Slider
				$(this).parent().toggleClass('menu_selected');
				
				$('#submenu').html($(this).next('ul'));
				$('#submenu').slideDown('slow');
			}
			else{
				location.href = $(this).attr('href');
			}
			return false;
		});
	});
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);
    $('#slider').nivoSlider({
        effect: 'random', // Specify sets like: 'fold,fade,sliceDown'
        directionNav: false, // Next & Prev navigation
        directionNavHide: true, // Only show on hover
        controlNav: false, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
		startSlide:rand
    });
});
