$(document).ready(function(){

 $("div.parthn a").click(function(){   
    $("#forma").slideToggle("slow");
    $(this).toggleClass("active");
    return false;
 });


 $("div.photogallery div.item").hover(
      function () {
        $(this).addClass("here");
      },
      function () {
        $(this).removeClass("here");
      }
    );


 $(".mainItem").hover(function () {

    $(this).addClass("el" + ($(this).prevAll().length + 1));
    $(this).find("ul").show();

 }, function () {

    $(this).removeClass("el" + ($(this).prevAll().length + 1));
    $(this).find("ul").hide();
 });
});
