var $ = jQuery.noConflict(); $(document).ready(function() { var $tabs = $('#tabs').tabs({ fx: { opacity: 'toggle', height: 'toggle', width: 'toggle' } }).slideDown(); if ( $( "#accordion1" ).length != 0 ) $( "#accordion1" ).accordion({ autoHeight: false}); if ( $( "#accordion2" ).length != 0 ) $( "#accordion2" ).accordion({ autoHeight: false}); if ( $( "#accordion3" ).length != 0 ) $( "#accordion3" ).accordion({ autoHeight: false}); if ( $( "#accordion4" ).length != 0 ) $( "#accordion4" ).accordion({ autoHeight: false}); $(".colorbox").colorbox({scalePhotos:true, maxWidth: '90%', maxHeight: '90%', slideshow:true}); $('.artist_table').slideDown(); $('.qitem') .hover( function() { $(this).find('img').fadeOut(); }, function(){ $(this).find('img').fadeIn(1000); } ); });