var ddmenuitem = 0;

function jsddm_open(){
  jsddm_close();
  $(this).children("a").css("background", "#06C");
  $(this).children("a").css("color", "#ffffff");
  ddmenuitem = $(this).find('ul').css('visibility', 'visible');
}

function jsddm_close() {
  if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');
  $(this).children("a").css("background", "#ffffff");
  $(this).children("a").css("color", "#06C");

}

function openGallery(){
  $("a[rel='galeria']").first().trigger('click');
}

$(document).ready(function() {
  $("a[rel='galeria']").colorbox({opacity: 0.9, maxWidth: 980, maxHeight: 560});

  $('#jsddm > li').bind('mouseover', jsddm_open);
  $('#jsddm > li').bind('mouseout',  jsddm_close);
  $("#jsddm > li > ul").hover(function() {
		$(this).parent().children("a").css("background", "#06C");
		$(this).parent().children("a").css("color", "#ffffff");
   }, 
   function() {
		$(this).parent().children("a").css("background", "#ffffff");
		$(this).parent().children("a").css("color", "#06C");
   });
   
   
});
