/**
 * Use this ScriptDoc file to manage the documentation for the corresponding namespace in your JavaScript library.
 *
 * @author Kira
 */
jQuery(function($){
    $(".horizontal1").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".horizontal2").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".horizontal3").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".horizontal4").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".vertical1").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".vertical2").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".vertical3").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    $(".vertical4").hover(function(){
        $(this).fadeOut(0);
        $(this).fadeIn(300);
    });
    
});
