$(function (){var listWidth;var newWidth = 0;var arrayWidth = new Array();$('div#fullView img').each(function() {var listWidth = $(this).width();arrayWidth.push(listWidth); });for(i=0; i < arrayWidth.length; i++){ newWidth += arrayWidth[i];  newWidth += 36;}$('div#fullView').css('width', newWidth);$('div#fullView ul li').bind('mouseover', function(){$(this).addClass('hover');});$('div#fullView ul li').bind('mouseout', function(){$(this).removeClass('hover');});$('div#footer').animate({opacity: '0.6'});$('div#fullView img').protectImage();$('ul#thumbs img').preload({ placeholder:'http://martingros.com/mg/wp-content/themes/martingros/images/loadingFull.gif', notFound:'http://martingros.com/mg/wp-content/themes/martingros/images/loadingFull.gif'});$('div#fullView img').preload({ placeholder:'http://martingros.com/mg/wp-content/themes/martingros/images/loadingFull.gif', notFound:'http://martingros.com/mg/wp-content/themes/martingros/images/loadingFull.gif'}); });