$(document).ready(function() {
	// top navigation
	$('.menu-horizontal')
	.css( {height: "32px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{height:"248px"}, 
			{duration:500})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{height:"32px"}, 
			{duration:500})
		});
	//tabs events
	$('ul.tabNav a').click(function() {
		var curChildIndex = $(this).parent().prevAll().length + 1;
		$(this).parent().parent().children('.current').removeClass('current');
		$(this).parent().addClass('current');
		$(this).parent().parent().next('.tabContainer').children('.current').slideUp('fast', function() {
			$(this).removeClass('current');
			$(this).parent().children('div:nth-child(' + curChildIndex + ')').slideDown('normal', function() {
				$(this).addClass('current');
			});
		});
		return false;
	});
});

