 $(document).ready(function(){

    $("ul#top_menu > li").hover(
      function () {
        $(this).find("ul.top_submenu").slideDown();
      },
      function () {
        $(this).find("ul.top_submenu").slideUp();
      }
    );
    
    $("a.lightbox-image").hover(
      function () {
        $(this).find("img").animate({opacity: 0.25});
      },
      function () {
        $(this).find("img").animate({opacity: 1});
      }
    );

    $("a.fancybox").fancybox({
		maxWidth	: 800,
		maxHeight	: 600,
		fitToView	: false,
		width		: '70%',
		height		: '70%',
		autoSize	: false,
		closeClick	: false,
		openEffect	: 'none',
		closeEffect	: 'none'
      }
    ); 

/*----- ajax

    $("a.read_more").fancybox({
		maxWidth	: 800,
		maxHeight	: 600,
		fitToView	: false,
		width		: '70%',
		height		: '70%',
		autoSize	: false,
		closeClick	: false,
		openEffect	: 'none',
		closeEffect	: 'none'
      }
    );
------ */


  });

