calling up an alert box using jsquery

I am trying to make an alert box a fancier jsquery box. You can see the popup I am trying to achieve by going to test3.dunnaspicks.com/WOW.

I can’t seem to figure out how to insert the new code.

=========================================
My current code is:

// Allow only one pick per column
$(document).ready(function() {
$(’.table1 input[type=radio]’).change(function() {
var radio = this;
var col = [’’,’’];
for(var i=0;i<2;i++) {
$(’.table1 td.col-’ + i + ’ input[type=radio]’).each(function() {
if ($(this).is(’:checked’) && ((col[i] == ‘’) || (col[i] == $(this).attr(‘name’)))) {
col[i] = $(this).attr(‘name’);
} else if ($(this).is(’:checked’)) {
alert(“You have already made a selection in this column. If you have not yet submitted your pick, you may use the unselect feature at the bottom of the page and start over. If you are changing a pick you previously submitted, you must return to Player Management and use the reset feature prior to picking again.”);
$(radio).attr(‘checked’, false);
}
})
}
})
})


==============================================
The desired function is:

            <div class="popups-rotate-multiple">
            <center>
               <p><a href="#example1">DONT CLICK ME PLEASE</a>;
             </center>
        </div>

        <div style="display:none;">
            <div id="example1">
               
                    <img src="images/xlarge.jpg"  />
Sponsor our Newsletter | Privacy Policy | Terms of Service