$(document).ready(function(){
		$('.flexslider').flexslider({
			animation: "slide",              
			slideshow: true,                
			slideshowSpeed: 5000,           
			animationDuration: 200,         
		  controlNav: false,               
		  controlsContainer: ".flexslider-container"
	  });
	});
	
	$('#slideshow').cycle({ 
    fx:    'fade', 
	    speed:  1000,
	timeout: 3000
	 });

/////Slider back to top
$(document).ready(function() {
    $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 1500, 'easeInOutExpo');
        return false;
    });
});



///////Javascript Email Address Encoder
//  by www.stevedawson.com
function emailAddress()
{
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var name = 'sales';
	var domain = 'newteq';
	var ext = 'ltd.uk'; 
	document.write('<a href="');
	document.write(first+second+third);
	document.write(name);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('">'); 
	document.write('sales@newteq.ltd.uk</a>');}
	

