/**
 * Executes jQuery for the Wolters-Baumschulen.de website.
 *
 * This file uses the JavaScript framework jQuery.
 *
 * LICENSE: FOR INTERNAL COMPANY USE ONLY
 *
 * @author     Florian Wolters <webmaster@wolters-baumschulen.de>
 * @copyright  Copyright (c) 2010 Wolters Baumschulen (http://www.wolters-baumschulen.de/)
 * @license    http://www.wolters-baumschulen.de/ FOR INTERNAL COMPANY USE ONLY
 * @version    1.0.0
 */
$(document).ready(function() {
    /**
     * Adds CSS v2.1 ":hover" selector support for any table row.
     */
    $('tr').csshover();

    /**
     * Defines the Look & Feel of the FancyBox, used for displaying the images.
     */
    $('a.wb-thumb').fancybox( {
        'cyclic': true,
        'hideOnContentClick': true,
        'overlayColor': '#4CD11E',
        'overlayOpacity': 0.5,
        'titlePosition': 'inside',
        'transitionIn' : 'elastic',
        'transitionOut' : 'elastic',
        'overlayShow' : true
    } );
} );