$(document).ready( function () {


    //$("ul.menu li.parent ul").hide();
    $(".parent ul").hide();
    $(".active ul").show();
    
    $("div.rep").hide();
    
    $("ul.menu li.parent > a").hover( function () {

//         if ($(this).next("ul:visible").length != 0) {
//             $(this).next("ul").slideUp("normal", function () { $(this).parent().removeClass("open") } );
//         }
// 
//         else {
           if (!$(this).parent().hasClass("open")) {
            $("ul.menu li ul").slideUp("normal", function () { $(this).parent().removeClass("open") });
            $(this).next("ul").slideDown("normal", function () { $(this).parent().addClass("open") } );}
//         }

        return false;
    });

    $("input.affrep").click ( function () {
	($(this)).prev(".rep").fadeIn(2000);
	}
      )
      
    $("input.masqrep").click ( function () {
	($(this)).prevAll(".rep").fadeOut(2000);
	}
      )

} ) ;

$(function() {
	$("span.frontbox").parent("a").lightBox();
});