// JavaScript Document
//top menu's sub
/*$(document).ready(function () {	
		$('#topnav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);
	
});
*/
//Footer slide
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
  //$('#quickLinks').hide();
 // toggles the slickbox on clicking the noted link  
  $('#qlBar').click(function() {
    $('#quickLinks').slideToggle(400);
    return false;
  });
});

//Slideshow
$(function() {
        $("div#controller").jFlow({
            slides: "#slides",
            width: "960px",
            height: "420px",
			duration: 600
        });
		setTimeout("changeSlide()", 5000);
		});
		function changeSlide() {
		$(".jFlowNext").click();
		setTimeout("changeSlide()", 5000);
		}
