var rfd = false, tout;
$(document).ready( function () {
    $("#nav>li")
        .mouseover( function () {
            $("#nav li").removeClass('current');

            if( $(this).find('ul').size() > 0 )
                $(this).addClass('current');
        })
        .mouseout( function() {
            $(this).removeClass('current');
        });

    $('#request_form').submit(function () {
        if (!rfd) {
            $('#form_name').attr('value', '');
            $('#form_contact').attr('value', '');
        }
        return $('#request_form').valid();
    });

    swfobject.embedSWF("/files/block.swf", "flash", "460", "280", "10..0", "/img/expressInstall.swf");
    
    $('.accordeon h3').wrapInner("<span></span>");
    
    $('.accordeon h3').click( function() {
		$(this).next('div').toggle();
		$(this).toggleClass('opened');
	});

    
    
});

