// JavaScript Document

jQuery(document).ready(function(){
jQuery("#triangle_left").hover(
function() {
jQuery("#triangle_left_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
jQuery("#triangle_left_content").stop().animate({"opacity": "0"}, "slow");
});
 
});

jQuery(document).ready(function(){
jQuery("#triangle_top").hover(
function() {
jQuery("#triangle_top_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
jQuery("#triangle_top_content").stop().animate({"opacity": "0"}, "slow");
});
 
});

jQuery(document).ready(function(){
jQuery("#triangle_right").hover(
function() {
jQuery("#triangle_right_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
jQuery("#triangle_right_content").stop().animate({"opacity": "0"}, "slow");
});
 
});

jQuery(document).ready(function(){
jQuery("#triangle_bottom").hover(
function() {
jQuery("#triangle_bottom_content").stop().animate({"opacity": "1"}, "slow");
},
function() {
jQuery("#triangle_bottom_content").stop().animate({"opacity": "0"}, "slow");
});
 
});
