Dynamically adjust skitter slideshow images size

I wrote the below code to dynamically adjust images size on window resize using skitter and jquery . but its not working pls help \[code\]<script>$('.box_skitter_normal').addClass("z1").skitter({label: false, numbers: false}); $('.box_skitter_normal2').addClass("z2").skitter({label: false, numbers: false});$(window).resize(function() { $('.box_skitter_normal').addClass("z1").skitter({label: false, numbers: false}); $('.box_skitter_normal2').addClass("z2").skitter({label: false, numbers: false});});</script>\[/code\]
 
Back
Top