(function($) {

    var flashvars = {};
    flashvars.cssSource = "splash.css";
    flashvars.xmlSource = "splash.xml";

    var params = {};
    params.play = "true";
    params.menu = "false";
    params.scale = "showall";
    params.wmode = "transparent";
    params.allowfullscreen = "true";
    params.allowscriptaccess = "always";
    params.allownetworking = "all";
    swfobject.embedSWF('flash/splash.swf', 'splash', '960', '500', '10', null, flashvars, params, null);

    $("#courses dt").mouseenter(function() {
		if ($(this).next().css('display')=='none') {
			$(this).next("dd").slideDown("500");
		}
	});
	$("#courses dt").mouseleave(function() {
		$(this).next("dd").slideUp("500");
	});
	$('#sections .box-content').mouseenter(function(){
		if ($(this).next('.section-more').css('display')=='none') {
			$(this).next('.section-more').slideDown("slow");
		}
	});
	$('#sections .box-content').mouseleave(function(){
		$(this).next('.section-more').slideUp("slow");
		$(this).css('margin-bottom', '13px');
	});
    
})(jQuery);

