$(function(){  
  $('.cat').showSubnav();
})

$.fn.showSubnav = function() {
  return this.each(function(){    
    var box = $(this);
    var text = $('ul', this);

    text.css({ position: 'absolute', top: '0' }).hide();

    box.hover(function(){
      text.slideDown("fast");
    },function(){
      text.slideUp("fast");
    });
  });
}

$(document).ready(function(){
	$("#home div.cat").mouseover(function () {
	  var i = $("#home div.cat").index(this);
	  $("#nav a").eq(i).addClass('current');
	});
	$("#home div.cat").mouseout(function () {
	  var i = $("#home div.cat").index(this);
	  $("#nav a").eq(i).removeClass('current');
	});

});

