$(document).ready(function() { 
$('.carousel').carousel();
    var url=window.location.href;
    try{document.getElementById(url.replace(/www./,'')).className = "active";}catch(e){}
    try{document.getElementById("bc_"+url.replace(/www./,'')).className = "active";}catch(e){}
 
});

	 $(document).ready(function() {
  $('#media').carousel({
    pause: true,
    interval: false,
  });
});



(function(window, document, undefined){
  window.onload = init;
  function init(){
    $('#sidebar ul.nav li.dropdown').hover(function() {
      $(this).find('#sidebar .dropdown-menu').stop(true, true).delay(200).fadeIn(500);
    }, function() {
      $(this).find('#sidebar .dropdown-menu').stop(true, true).delay(200).fadeOut(500);
    });
  }

})(window, document, undefined);

