I have two document.ready functions as shown below:
$(document).ready(function() {
$('#slider1').s3Slider({
timeOut: 3000
});
});
$(document).ready(function() {
$(".modalbox").fancybox();
$("#contact").submit(function() {
return false;
});
The first is a banner jquery that is supposed to rotate forever. The second is a contact form modal box that appears on the user's click. Is it possible for the two to coexist?