$(document).ready(function(){

	$(document).pngFix();

	$('.cycle').cycle({ 
	    fx:    'fade',
	 	speed: 4000
	});

	$(".external").click(function(){
 		var newWindow = window.open(this.getAttribute('href'), '_blank');
  		if (newWindow) {
			if (newWindow.focus) {
				newWindow.focus();
				return false;
			}
  		} else {
			return true;
		}
	});

});