﻿$(document).ready(function () {

    $('.menu li').hover(
	    function () {
	        var ul = $(this).find('ul:first');
	        ul.show();
	    },
	    function () {
	        $(this).find('ul:first').hide();
	});

    var vidLink = $('.consVideo');

    $(vidLink).openDOMWindow({
        eventType: 'click',
        loader: 1,
        loaderImagePath: '/images/loader.gif',
        loaderHeight: 32,
        loaderWidth: 32,
        width: 480,
        height: 280,
        windowSource: 'iframe',
        windowPadding: 0
    });
});
