$(function() {
  $("#content").load('content/home.htm')
  
  $("li.drop").click(function() {
	if ( $(this).children(".subMenu").is(':visible')){
	  $(this).children(".subMenu").filter(":visible").slideUp("slow");
	  $(this).addClass("bbpadd");
    } else {
      $(this).children(".subMenu").filter(":hidden").slideDown("slow");
      $(this).removeClass("bbpadd");
    }
  })
	  
  $("li.link").click(function(event) {
     $("#content").load('content/' + this.lang)
     if($(this).hasClass('sub')) {
       event.stopPropagation();
     }
  })
})

