/* ======================================================================================
 * Filename: theme/javascript/functions.js
 * Author: Rebecca Skeers, rebecca@webmistress.com.au, www.webmistress.com.au
 * Copyright: Rebecca Skeers
 * Date: 24 Nov 2010
 * Description: JavaScript functions for the ArcTas website.
 *
 * This file may not be used for any purpose other than for the ArcTas website 
 * and may not be copied or modified without written permission from the author.
 * ======================================================================================
 */

$(document).ready(function()
{	
	// Drop down menus
	$("#nav li").hover(
		function () { $(this).addClass("hover"); },
		function() { $(this).removeClass("hover"); }
	);
	
	// Links with rel="external" open in a new window
	$("a[rel='external']").attr("target","_blank");
	
	// Tidy ups and visual enhancements
	$("p > img.image-left").closest("p").css("padding","0");
	$("p > img.image-right").closest("p").css("padding","0");
});

