// jQuery.noConflict(); jQuery(document).ready(function() { if ($.browser.webkit) { jQuery("div#carousel").scrollable({mousewheel:false}).navigator({navi:'.navigator'}).autoscroll({interval: 10000}); } else { jQuery("div#carousel").scrollable({circular:true, mousewheel:false}).navigator({navi:'.navigator'}).autoscroll({interval: 10000}); } function init(){ // BIND CLICK @HOME jQuery('#logo').click(function(){ window.location.href="/"; }); jQuery('div#mc_info ul#infobar li.icon h3').each(function(){ var _e=jQuery(this).parent().attr('id'); _e=_e.split('_'); jQuery(this).css('background-position','0 -'+parseInt(_e[1])*50+'px' ); }) jQuery('#breadcrumb a').after(' / '); jQuery('#insideContent li').last().css({ 'border' : 'none' , 'padding-bottom' : '0px' }); jQuery('#contentWrapper .thumbGrid li').each(function(index){ if (!((index+1)%3)) { jQuery(this).css( 'margin-right' , '0px' ); } }); } init(); });