/* ===========================================================================
 * Filename: javascript/functions.js
 * Author: Rebecca Skeers, rebecca@webmistress.com.au, www.webmistress.com.au
 * Copyright: Rebecca Skeers
 * Date: 29 Sep 2009
 * Description: Contains JavaScript functions for the Alcorso Foundation website.
 *
 * This file may not be used for any purpose other than for the Alcorso Foundation
 * website and may not be modified without written permission from the author.
 * =========================================================================== 
 */

$(document).ready(function()
{	
	$("a[rel='external']").attr("target","_blank");
	$("p > a > img.image-left").parent().parent().css("padding-bottom","0");
	$("p > a > img.image-right").parent().parent().css("padding-bottom","0");
	$("p > img.image-left").parent().css("padding-bottom","0");
	$("p > img.image-right").parent().css("padding-bottom","0");
	$("p > a.button-right").parent().css("padding-bottom","0");
	$('a.lightbox').lightBox();
});

