????
| Current Path : /home2/morganrand/www/coupon/js/ |
| Current File : /home2/morganrand/www/coupon/js/designtool-reveal00.js |
// JavaScript Document
// shows the slickbox DIV on clicking the link with an ID of "slick-show"
$(document).ready(function() {
// we'll put our code here
$('#designtool-box').hide();
$('a#designtool-show').click(function() {
$('#designtool-box').show('slow');
return false;
});
});