/*
JavaScript Init File
----------------------------------------------------------
@Author: 	Dave Buchholz (dave@i-cre8.com)
@Created: 08-10-2010
@Updated	n/a
---------------------------------------------------------- 
*/

/*
Initialise Standard jQuery Stuff
---------------------------------------------------------- 
*/
$(function() {
	/*
	open external links in a new window
	---------------------------------------------------------- 
	*/
	$('a[rel=external]').click(function(e){
		open(this.href);
		e.preventDefault();
		});
	/*
	munge email addresses to avoid harvesting
	---------------------------------------------------------- 
	*/	
	$('a.email').nospam({
      replaceText: true,    // BOOLEAN, optional default false. If set to true, replaces matched elements' text with the e-mail address
      filterLevel: 'normal' // normal: dlt/niamod/liame (email/domain/tld reversed)
    });
	/*
	initialise localscroll
	---------------------------------------------------------- 
	*/
	$.localScroll();
	/*
	initialise style switcher
	---------------------------------------------------------- 
	*/
	$('a.css').styleInit();
	
	
});
