
$(document).ready(function($){
  
  $(".ro img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("_over."));
  	}, function() {
    $(this).attr("src", $(this).attr("src").split("_over.").join("."));
  	});
  
  //$('a.lightbox').lightBox();

  $(".popup").click(function(){ 
    window.open($(this).attr("href")); 
    return false; 
	}); 
  
  $('.animation').cycle({  
    	pager:  '#nav' 
	});
  
});