$(document).ready(function () {
    // Баннер
    $('.banner').cycle();

    // Партнеры
    $(".scrollable").scrollable();

    // Наведение 
    $('.scrollable img').imghover({ suffix: '-hovered' });
    $('.twitter img').imghover({ suffix: '_hovered' });

    // Добавляем кавычки
    //$('.lquotes').append('<img src="'+'абракадабра'+'../../pics/lquotes.png" alt="&#8220;" width="40px" height="32px"/>');  
    {
        $('h3').prepend('<img src="' + path + 'lquotes.png" alt="&#8220;" width="40px" height="32px"/>');
        $('h3').append('<img src="' + path + 'rquotes.png" alt="&#8221;" width="36px" height="29px" style="margin-bottom:-17px;"/>');
    }
});

function showText(elemId) {
 /*   document.get
    if (!elem.isHide)
    { elem.hide(); }
    else { elem.Show(); }

*/

//    elem = $('p.showElement').get(0);

  /*  elem = document.getElementById(elemName); //.getAttribute("display");

    if (document.getElementById(elemName).getAttribute("display") == "block")
    { elem.animate({ height: "hide" }, 300); }

    if (jQuery.css(elem, "display") == "block")
    { elem.animate({ height: "hide" }, 300); }

    if (jQuery.css($('p.showElement')[0], "display") == "block")
    { $('p.showElement').animate({ height: "hide" }, 300); }

    if (jQuery.css($('p.showElement')[0], "display") == "none")
    { $('p.showElement').animate({ height: "show" }, 300); }*/

    elem = document.getElementById(elemId);
    if (elem.style.display == "none") elem.style.display = "";
    else elem.style.display = "none";
}
  
