$(document).ready(function() {
	$("a[href^='http:']:not([href*='" + window.location.host + "'])").each(function() {
        $(this).attr("target", "_blank");
    });
	$("div#videos > img").click(
		function() {
			window.location = "/our-videos/";
			}
	);
	$('.image > img').each(function(){
     	$(this).after('<br /><div class="caption"></div>');
		var p = this.parentNode;
		$('div.caption', p).html(this.title);
   	});
});
$(window).load(function() {
    $('.slideshow > ul').each(function() {
		$(this).after('<!--[if gt IE 6]><!--><a class="prev"></a><a class="next"></a><!--<![endif]--><div class="caption"></div><div class="controls"></div><div class="clear"></div>');
		var p = this.parentNode;
		$(this).cycle({
			next: $('a.next', p),
			prev: $('a.prev', p),
			pager: $('div.controls', p),
			fx: 'scrollHorz',
			easing: 'easeOutExpo',
			speed: 500,
			timeout: 0,
			before:     function() {
            $('div.caption', p).html($(this).children('img').attr('title'));
			}
		});
	});
	
	$('#topimage img').each(
		function(){
			if ($(this).attr('title')) {
				$(this).after('<span class="caption">' + $(this).attr('title') + '</span>')
			}
		}
	);
	$('span.caption').css({ opacity : 0.75 });
	
});

