
function jQueryWraps(){
$('input.button, input.Searchbutton').wrap('<span class="roundedButtonLeft"><span class="roundedButtonRight">' + '</span></span>');
$('input.button, input.Searchbutton').each(function(a,buttie){
$('span.roundedButtonLeft:eq('+a+')').css('marginTop', $(buttie).css('marginTop'));
$('span.roundedButtonLeft:eq('+a+')').css('marginRight', $(buttie).css('marginRight'));
$('span.roundedButtonLeft:eq('+a+')').css('marginBottom', $(buttie).css('marginBottom'));
$('span.roundedButtonLeft:eq('+a+')').css('marginLeft', $(buttie).css('marginLeft'));
$(buttie).css('marginTop', '0px');
$(buttie).css('marginRight', '0px');
$(buttie).css('marginBottom', '0px');
$(buttie).css('marginLeft', '0px');
});
$('.jslItemContainer').wrapAll('<div id="jslItemContainerScreen"><div class="jslItemContainerRoll">'+'</div></div>');
}
