$(document).ready(function() {
						   $("#mover1").wTooltip({
    content: "Mini Magazine",
    style: {
        border: "2px solid gray",
        background: "red",
        color: "white",
        fontWeight: "bold"
    }
});
							$("#mover2").wTooltip({
    content: "Cards4U: Fun, Interesting, and Cool FREE postcards.",
    style: {
        border: "2px solid gray",
        background: "red",
        color: "white",
        fontWeight: "bold"
    }
});
							$("#mover3").wTooltip({
    content: "ADtheLOO: Washroom Advertisement.",
    style: {
        border: "2px solid gray",
        background: "red",
        color: "white",
        fontWeight: "bold"
    }
});

$("#mover4").wTooltip({
    content: "Xtra!: something extra to support, highlight, and create a buzz.",
    style: {
        border: "2px solid gray",
        background: "red",
        color: "white",
        fontWeight: "bold"
    }
});

 });