

$(document).ready(function()
{

/**
-------------------------------------------------------------
	Navigation
------------------------------------------------------------- */
   $("#navigation .off")
    .mouseover(function(){
        $(this).css("background-color","#ff9334");
        $(this).children("a").css("color","#000000");

    })
    .mouseout(function(){
        $(this).css("background-color","#ced9c5");
        $(this).children("a").css("color","#000000");
    });

    $("#navigation .open")
    .mouseover(function(){
        $(this).css("background-color","#ff9334");
        $(this).children("a").css("color","#000000");

    })
    .mouseout(function(){
        $(this).css("background-color","#ced9c5");
        $(this).children("a").css("color","#0a6b37");
    });

    $("#navigation .off:not(.extern), #navigation .open").click(function () {
      location.href=$(this).children("a").attr("href");
      return false;
    });

    $(".extern").click(function () {
      window.open($(this).children("a").attr("href"));
      return false;
    });

/**
-------------------------------------------------------------
	Sidebar
------------------------------------------------------------- */

    $("#right_sidebar_2 div,#right_sidebar_1 div,#gallery div")
    .mouseover(function(){
        $(this).css("background-color","#d7d7d7");
    })
    .mouseout(function(){
        $(this).css("background-color","#ced9c5");
    });

/**
-------------------------------------------------------------
	Lightbox
------------------------------------------------------------- */

    $('.lightbox a').lightbox();

});

