$(document).ready(function(){

		$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);

	});


$(document).ready(function(){
$('#login form').hide();
  $('#login a').toggle(function() {
    $(this)
      .addClass('active')
      .next('form')
      .animate({'height':'show'}, {
        duration:'slow',
        easing: 'easeOutBounce'
      });
  }, function() {
    $(this)
      .removeClass('active')
      .next('form')
      .slideUp();
  });
  $('#login form :submit').click(function() {
    $(this)
      .parent()
      .prev('a')
      .click();
  });
});


$(document).ready(function() {
$("#nav").find("a").each(function(){
if( location.href.indexOf(this.href) != -1) {
$(this).addClass("here");
}
});
});
