$(document).ready(function() {
	
	$("[title=popup]").fancybox();
	$('.slideshow').cycle({ delay:  500, speed:  500});
	
	
	$('#slideshow').after('<div id="nav">').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 3000, 
	    pager:  '#nav',
	  	pagerEvent: 'mouseover',
	  	pauseOnPagerHover: true,
		pause: 1 	
	});
	
	// $('a[href^="http://"]').attr("target", "_blank");
	
	$('#navigation ul li').hover(function() {
	  $(this).addClass('iehover');
	}, function() {
	  $(this).removeClass('iehover');
	});	

});
