on the first page you may want to try changing this
Code:
<script type="text/javascript"> //http://webdeveloperplus.com/jquery/featured-content-slider-using-jquery-ui/
$(document).ready(function(){
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 1000, true);
$("#featured").hover(
function() {
$("#featured").tabs("rotate",0,true);
},
function() {
$("#featured").tabs("rotate",1000,true);
}
);
});
</script>
to this
Code:
<script type="text/javascript"> //http://webdeveloperplus.com/jquery/featured-content-slider-using-jquery-ui/
jQuery(document).ready(function($){
$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 1000, true);
$("#featured").hover(
function() {
$("#featured").tabs("rotate",0,true);
},
function() {
$("#featured").tabs("rotate",1000,true);
}
);
});
</script>
if it helps it is because the flexdropdown script is in jquery noconflict mode
edit: okay I see you fixed it already
Bookmarks