/**
 * cinematoday.core.js
 * COPYRIGHT (C) 2008 WELVA CORPORATION. ALL RIGHTS RESERVED.
 *
 * $Id: cinematoday.core.js,v 1.1 2008/05/16 11:49:38 flix Exp $
 */

/* Mouse Over */
$(function(){
    $(".ct_hover").
        mouseover(function() {
            this.src = this.src.replace(/^(.+)(\.[a-z]+)$/, "$1_over$2");
        }).
        mouseout(function() {
            this.src = this.src.replace(/^(.+)_over(\.[a-z]+)$/, "$1$2");
        }).
        each(function() {
            $(this).css('cursor', 'pointer');
            this.preloaded = new Image;
            this.preloaded.src = this.src.replace(/^(.+)(\.[a-z]+)$/, "$1_over$2");
        });
});

