$(document).ready(function(){
// Links effect
//
if( BrowserDetect.browser!="Explorer" ) {
$("a").hover(
function(){
$(this).parent().addClass("selected");
$(this).animate({opacity: 0.5},300);
$(this).animate({opacity: 1},100);
},
function(){
$(this).parent().removeClass("selected");
$(this).animate({opacity: 1},100);
}
);
}
// External Links
//
$("ul.links li a").append("
");
$("a.external").append("
");
// Go To Top
//
$("span#gototop a").click( function() {
$.scrollTo($("body"), 1000);
return false;
});
});