Сейчас при запуске страницы выводятся все картинки.
Нужно чтоб выводилась одна картинка, то есть убрать вообще фильтрацию "all"
Или может сделать чтоб "all" показывал только 1 картинку?!
$(document).ready(function() {
$('.planmenu li a').click(function() {
$('.planmenu li').removeClass('selected');
$(this).parent('li').addClass('selected');
imgWidth = '100%';
thisItem = $(this).attr('rel');
if(thisItem != "all") {
$('.planitem li[rel='+thisItem+']').stop()
.animate({'width' : imgWidth,
'opacity' : 1,
'marginRight' : '.5em',
'marginLeft' : '.5em'
});
$('.planitem li[rel!='+thisItem+']').stop()
.animate({'width' : 0,
'opacity' : 0,
'marginRight' : 0,
'marginLeft' : 0
});
} else {
$('.planitem li').stop()
.animate({'opacity' : 1,
'width' : imgWidth,
'marginRight' : '.5em',
'marginLeft' : '.5em'
});
}
})
});