$(document).ready(function(){

	// ==================== 
	// ! Scrollable Links   
	// ==================== 

    $('a[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
        && location.hostname == this.hostname) {
            var $target = $(this.hash);
            $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
            if ($target.length) {
                var targetOffset = $target.offset().top;
                $('html,body').animate({scrollTop: targetOffset}, 1000);
                return false;
            }
        }
    });
   
   
	// ========================================== 
	// ! Format the Home Page news items nicely   
	// ========================================== 

    $('#news-items div:first-child')
    	.addClass('alpha');
    	
    $('#news-items div:last-child')
    	.addClass('omega');
	
	
	// ================== 
	// ! Dropdown Menus   
	// ================== 

	$('.menu li').hover(
		function() { $('ul',this).stop(true, true).fadeIn(); },
		function() { $('ul',this).stop(true, true).fadeOut();
	});

	
	// ========================================================= 
	// ! Add class to first child paragraph on pages and posts   
	// ========================================================= 

	$('#page p').first().addClass("intro");
	
});
