// HEADER - EFFECTS (initialize the slideshow)

$(document).ready(function() {



    $('.slideshow').cycle({

	fx:'scrollLeft',
	speed: 1500,
        timeout: 12000

	});


    $('.slideshowteaser').cycle({

	fx:'scrollLeft',
	speed: 1500,
        timeout: 3000,
		pause: 1
	});
	
	//add click from link to entire DIV
	
	$('.introteaser').each(function(index) {
		
		var element = $(this).find('a');
		this.aTag = element[0];
		
		$(this).bind('click', function(e){			
				if(this.aTag.getAttribute('onclick')){
					this.aTag.onclick();
				}else{
				var myTarget = "_self";
					if(this.aTag.target){myTarget=this.aTag.target};
					var newWindow = window.open(this.aTag.href, myTarget );
					return false;
				}			
			});		
	});
	

});
