$(function() {
$(".item:even").each(function(indx){
$(this).find('.preview img').css('margin-left', $(this).find('content').width()+'px');
});
$(".item:odd").each(function(indx){
$(this).find('content').css('margin-left', $(this).find('.preview img').width()+'px');
});
});