$(document).ready(function(){
	
	//Home Images
	 $('#gallery-1').cycle({
	fx: 'fade',
	timeout:6000,
	speedIn: 1000,
    speedOut: 1000, 
    cleartypeNoBg: true,
    pager: '#squarenav'
	});
	
	//Email Masking
	function nospam(user,domain) {
		locationstring = "mailto:" + user + "@" + domain;
		window.location = locationstring;
	}
	
});
  		
  		jQuery(function ($) {
  		$("a").filter(function() {
  		    return this.hostname && this.hostname !== location.hostname;
  		}).attr('target', '_blank');
  		});
