/* ===========================================================================
 * Filename: theme/javascript/functions.js
 * Author: Rebecca Skeers, rebecca@webmistress.com.au, www.webmistress.com.au
 * Copyright: Rebecca Skeers
 * Date: 18 Sep 2010
 * Description: Contains JavaScript functions for the Sandy Bay Massage Centre website.
 * Requires: jQuery
 *
 * This file may not be used for any purpose other than for the Sandy Bay Massage Centre
 * website and may not be modified without written permission from the author.
 * =========================================================================== 
 */

$(document).ready(function()
{	
	// Drop down menus for IE6
	$("#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");
	
	$("p img.image-left").closest("p").css("padding","0");
	$("p img.image-right").closest("p").css("padding","0");
});

/* Google map functions */
$(window).resize(function()
{
	if(typeof loadMap==='function')
		loadMap();
});

$(window).unload(function()
{
	if(typeof GUnload==='function')
		GUnload();
});

$(document).ready(function()
{
	if(typeof loadMap==='function')
		loadMap();
});

