/**

*Start of home page function

* this function has been moved from home.js to rf.js.

* it is needed to handle the mouseovers on the home page.

*/

wireUpMosaic = function(){

    jQuery('#mosaic>div>div').mouseover(function(){

        jQuery(this).addClass('hover');

        if(window.fixpng && !this.fixed){

            jQuery('img',this).each(function(){

                fixpng(this);

            });

            this.fixed = true;

        }

    }).mouseout(function(){

        jQuery(this).removeClass('hover');

    }).each(function(){

        if(jQuery('html.ie6').size()){

            jQuery('.rollover-content',this).prepend('<div style="background:#000;z-index:-1;position:absolute;top:0;left:0;width:600px;height:600px;filter:alpha(opacity=80)"></div>');

        }

    });



};


jQuery(wireUpMosaic);

wireUpMosaicGG = function(){

    jQuery('.giftguide-collage').mouseover(function(){

    	jQuery('.rollover').show();



    }).mouseout(function(){

    	jQuery('.rollover').hide();

    });



};

jQuery(wireUpMosaicGG);
