/* Author: Ryan Burniche

*/

var $myvar = '#' + 'start';

$(function() {

	$('.navitem').hover(function() {
        $(this).css('color','#25c2e9');
    },
        function () {
        $(this).css('color','#000000');
    });

    $('.navitem').click(function() {
    		$($myvar).delay(0).slideUp(800);
            $myvar = '#view' + $(this).attr('id');
            $($myvar).stop().delay(800).slideDown('slow');
    });

});






















