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


$(document).ready(function()
{	
	// External links
	$("a[rel='external']").attr("target","_blank");
	$("li > a.pdf").parent().parent().addClass("nobullet");
	$("li > a.doc").parent().parent().addClass("nobullet");
	
	
});



