
$(function(){  

	$("#sub-nav").css("display", "none");
	$("#sub-nav1").css("display", "none");
	$("#sub-nav2").css("display", "none");


});






$(document).ready(function(){
	$("#dropDown").click(function(event){
		event.preventDefault();
		$("#sub-nav").slideToggle();
	});
	$("#dropDown1").click(function(event){
		event.preventDefault();
		$("#sub-nav1").slideToggle();
	});
	$("#dropDown2").click(function(event){
		event.preventDefault();
		$("#sub-nav2").slideToggle();
	});
});




  $(function() {
    $('#imageshow').crossSlide({
      sleep: 3,
      fade: 1
    }, [
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide1.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide2.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/extraslide.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide3.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide4.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide5.jpg' },
  { src: 'http://www.atlas.dymani.com/wp-content/themes/default/images/slideshow/slide6.jpg' }
    ])
  });

