$(document).ready(function(){
$("a[rel='external']").click(function(){
window.open(this.href);
return false;
});
});


//$(document).ready(function(){
//$('#photos ul').cycle();
//});


//$(document).ready(function(){
//	$(".inner h3").css({opacity: .5});
//$(".inner h3").hover(
//function() {
//$(this).stop().animate({"opacity": "1"}, "slow");
//},
//function() {
//$(this).stop().animate({"opacity": ".5"}, "slow");
//});
 
//});


jQuery(document).ready(function() {
var navDuration = 150; //time in miliseconds
      var navJumpHeight = "10px";

      jQuery('ul.tabs li a').hover(function() {
          jQuery(this).animate({ bottom : "-="+navJumpHeight }, navDuration);            
      }, function() {
          jQuery(this).animate({ bottom : "10px" }, navDuration);
      });

});