﻿var SVS = {};

SVS.full = function() {

    var that = {};

    that.init = function() {
        that.initPagePeel();
        that.initJobListings();
    };

    that.initPagePeel = function() {
        $('#peel').pagePeel({
            bigWidth: 500,
            bigHeight: 500,
            //bigBG: 'img/valentinesdayspecial_pagepeel.jpg', // if you are not using flash, this is where your large ad image is located
            bigAd: 'img/summerspecial_peel.jpg', // if you are using flash, this is where your ad image is located
            flash: true,
            adLink: 'specials/summer/summerspecial.html',
            adLinkTarget: '_blank'
        });
    };

    that.initJobListings = function() {
        var contact = $("img[name='mail_base']");

        var contactOffset = contact.offset();

        $("body").append('<img id="joblistings" src="images/joblistings.gif">');

        $("#joblistings").css({
            "position": "absolute",
            "top": contactOffset.top + 15,
            "left": contactOffset.left + 90
        });
    };

    return that;

} ();