﻿function Image_init() {
    $("a[rel=example_group]").fancybox({
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'titlePosition': 'over',
        'width': "680px",
        "height": "370px",
        "overlayOpacity" : "0.5",
		"overlayColor" : "#000000",
        'titleFormat': "",
         'overlayShow': 'false'
    });
    $("#featured-content img").mouseover(function() {
        var _this = $(this);
        imgoptionset = _this.offset().left;
        imgoptionsettop = _this.offset().top;
        _this.css({ "postion": " absolute", "z-index": "1000" });
        _this.stop().animate({ "height": "160px", "width": "160px" });
    }).mouseout(function() {
        var _this = $(this);
        _this.css({ "postion": " absolute", "z-index": "100" });
        _this.stop().animate({ "height": "140px", "width": "140px" });
    });
}

