(function($){ $(function(){ if ($.browser.msie === true) { $("input").bind('focus blur',function(){$(this).toggleClass('focus')}); } // MobiMenu JVFwResponsive.screenAction( 768, function(){ // Convert to accordion $('.block').each(function(index, el){ var accordions = $(el).find('.contentmod').hide(); $(accordions[0]).show(); if($(el).find('h3.title')[0]) $($(el).find('h3.title')[0]).addClass('active') $(el).find('h3.title').click(function() { var active = $(el).find('h3.active').removeClass('active').next().hide(); $(this).addClass('active').next().show(); return false; }); }); // Sidebar $('.mobile-collpase').each(function(){ $(this).children('div.contentmod').hide(); var content = $(this).children('div.contentmod').hide(); $(this).children('h3.title').click(function(){ if(content.css('display') == 'none' ){ content.css('display','block'); }else{ content.css('display', 'none'); } }); }); // Search button var content = $('.position-search .contentmod').hide(); $('.position-search .title').click(function(){ if(content.css('display') == 'none' ){ content.css('display','block'); }else{ content.css('display', 'none'); } }); }, function(){ // Convert to accordion $('.block .contentmod').show(); // Sidebar $('.mobile-collpase').each(function(){ $(this).children('div.contentmod').show(); }); // Search button $('.position-search .contentmod').show(); } ); }); })(jQuery)