// JavaScript Document


$(document).ready(function($){
	
	// Animation
	$('.animation').cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 0, 
    pager:  '#nav', 
    pagerAnchorBuilder: function(idx, slide) { 
        return '#nav li:eq(' + idx + ') a'; 
    } });	
	
	$(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	}); 
    
});
