/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$(document).ready(function(){
        $('.lightAndWarm').css('display', 'none');
        $('.head-image-block').hover(function(){
                $('.lightAndWarm').fadeTo(950, 1);
        }, function(){
                $('.lightAndWarm').fadeTo(950, 0.0);
        });

        /*
       *  Вывод отображения меню.
       */
        $('.menu-list li').hover(function(){
                element = $(this).children('ul.subMenuStart');
                element.show();
                element.next('div.menu-bottom').show();
        }, function(){
                element = $(this).children('ul.subMenuStart');
                element.hide();
                element.next('div.menu-bottom').hide();
        });
        $('a.showBigPhoto').fancybox({
                'titleShow'	: true,
//                'autoScale':false,
                'titlePosition' :'inside',
                'transitionIn'	: 'elastic',
                'transitionOut'	: 'elastic'
        });
});
