/***
Script
-----------------------------------------------
domain7.com
file:		/js/script.css
firm:		FH Canada
date:		2009
***/

function showLoading(title){
	$('#loading').append(' ' + this.title) ;
	$('#loading').show();
	return true;
}
/* Sandbox URL Rewrites - ae */ 
$(document).ready(function() {
	$('body').append('<div id="loading" style="display:none;">Loading...</div>');
	$('a[title]').bind('click', showLoading);
	
	if (window.location.href.match(/fh\.domain7\.com|sandbox/)) {
	
		$("a").each(function() { 
		      this.href = this.href.replace(/(forms|checkout|system)\.netsuite\.com/, 
		         "$1.sandbox.netsuite.com");
		      this.href = this.href.replace(/http:\/\/www\.fhcanada\.org/, 
		         "http://fh.domain7.com");
		});
	
		$("iframe").each(function() { 
		      this.src = this.src.replace(/(forms|checkout|system)\.netsuite\.com/, 
		         "$1.sandbox.netsuite.com");	      
		});
	
		$("form").each(function() { 
		      this.action = this.action.replace(/(forms|checkout|system)\.netsuite\.com/, 
		         "$1.sandbox.netsuite.com");	      
		});
	
	} 
	
});

/* Suckerfish - main navigation dropdown
----------------------------------------------- */
sfHover = function() {
	try {
		var sfEls = document.getElementById("mainnav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	} catch (e) {
		//do nothing
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/**
 * Allow Getting URL var by its name
 * var byName = $.getUrlVar('name')
 */
jQuery.extend({
	getUrlVars: function(){
		var vars = [], hash;
		var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
		for(var i = 0; i < hashes.length; i++){
			hash = hashes[i].split('=');
			vars.push(hash[0]);
			vars[hash[0]] = hash[1];
		}
		return vars;
	},
	getUrlVar: function(name){
		return $.getUrlVars()[name];
	}
});
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 *
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options = $.extend({}, options); // clone object since it's unexpected behavior if the expired property were changed
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // NOTE Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};
