/*
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)
    });
		
	/*
	disable right click context menu
	---------------------------------------------------------- 
	*/	
	$(document).bind("contextmenu",function(e){
	alert("Duplication or reproduction of content or images is prohibited. Copyright \xA9 2005-2011");
        return false;
    });
		
	/*
	Zebra Striping
	---------------------------------------------------------- 
	*/
	$(".i8_zebra tbody tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".i8_zebra tbody tr:odd").addClass("alt");
	
	
	// PNG Fix
	$('#layout-wrapper').supersleight({shim: '/_img/ele/x.gif'});
	
	// Image swap
	$(".img-swap").hover(
          function(){
						this.src = this.src.replace("_up","_down");
					},
          	function(){this.src = this.src.replace("_down","_up");
					}
     );

});
