// Initializes User Scripts:
$(document).ready(function() {
  // Opens up links in new window.
  $('.lnkBlank').click(function() {
    window.open($(this).attr('href'), 'newWindow', '');
    return false;
  });

 pixelsilk2.renderSkin({skin: '[' + '[Menu1]' + ']', path: ''}, function(html) {
    $("#siteMenu").after('<div id="subNavigation" style="display: none;"></div>');
    $("#subNavigation").html(html);
    var sections = $("#subNavigation div");
    var topElements = $("#topMenu li:not(.separator)");
    for (z = 0; z < sections.length; z++) {
      var li = topElements[z];
      var lihtml = li.innerHTML;
      li.innerHTML = lihtml + sections[z].innerHTML;
    }
    $("#topMenu").navMenu({
      menuWidth: 1,
      containerElement: "#theme",
      menuElement: "ul",
      rightArrow: " &raquo;"   
    });
   
  $('#topMenu li:has(ul)').hover(function(){
    $(this).addClass('over')
    },function(){
    $(this).removeClass('over')
    });
  });

});
