/**
 * /scripts/jq.js
 * Implements jQuery
 * 
 * @copyright Ambient Age (www.ambientage.com)
 * @author @davkell (www.davidkelly.ie)
 */
$(document).ready(function(){
	
	/**
	 * Top Navigation bar
	 */
	$('#top-nav ul li').mouseover(function(){
		$(this).css({cursor: 'pointer'});
		$(this).children('span').css({color: '#fff'});
	}).mouseout(function(){
		$(this).children('span').css({color: '#fefefe'});
	}).click(function(){
		window.location = $(this).children('a').attr('href');
	});
	
	/**
	 * Author Listing Page
	 */
	$('.author-bio').mouseover(function(){
		$(this).css({cursor: 'pointer', backgroundColor: '#eee' });
	});
	$('.author-bio').mouseout(function(){
		$(this).css({backgroundColor: '#fdfdfd' });
	});
	$('.author-bio').click(function(){
		window.location = $(this).children('h4').children('a').attr('href');
	});
	
});