// JavaScript Document


$(document).ready(function(){
$("#triangle_left").hover(
function() {
$("#triangle_left_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
$("#triangle_left_content").stop().animate({"opacity": "0"}, "slow");
});
 
});




$(document).ready(function(){
$("#triangle_top").hover(
function() {
$("#triangle_top_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
$("#triangle_top_content").stop().animate({"opacity": "0"}, "slow");
});
 
});



$(document).ready(function(){
$("#triangle_right").hover(
function() {
$("#triangle_right_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
$("#triangle_right_content").stop().animate({"opacity": "0"}, "slow");
});
 
});

