// ### MENU FUNCTIONS ###

$(document).ready(function () {	
	
	$('#topnav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);
 
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);
	
});

// ### END MENU FUNCTIONS ###


// ### SLIDE FUNCTION ###

    $(function() {
        $("div#controller").jFlow({
            slides: "#slides",
            width: "254px",
            height: "410px"
        });
    });

// ### SLIDE FUNCTION ###

function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
}
