google.load("jquery", "1.6.4");

var setImageLocations = function () {

    var docHeight = $(document).height(),
		docWidth = $(document).width();

    $('div.content').width(docWidth - 200).height(docHeight - 200);

    var divWidth = $('div.content').width(),
		divHeight = $('div.content').height();

    $("img").each(function () {
        $(this).css({
            display: "block",
            left: Math.floor(Math.random() * divWidth),
            top: Math.floor(Math.random() * divHeight)
        });
    });
};

google.setOnLoadCallback(function () {
    setImageLocations();
    $(window).resize(setImageLocations);
});

_uacct = "UA-188239-1";
urchinTracker();
