//tabtest

$(document).ready(function(){
	$('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').fadeOut('slow',function() {
			$(this).removeClass('current');
			$(this).parent().children('div:nth-child('+curChildIndex+')').fadeIn('slow',function() {
				$(this).addClass('current');
			});
		});
		return false;
	});
});


//about me text box manuvuers

$(function(){
	$('a.phone').click(function() {
		$('#numbr').toggle('slow');			
	});
});

$(function(){
	$('a.email').click(function() {
		$('#mail').toggle('slow');			
	});
});



// menu1 dropdown
$(function() {
	if ($.browser.msie && parseInt($.browser.version)< 7) {
	    $("#tabs li").hover(
            function() {
            	$(this).addClass("sf");
            },
            function() {
		$(this).removeClass("sf");
            });
	}
});

