
//jQuery onReady

$(document).ready(function(){

//zmags_order_list tabel
$('.zmag_orderlist tbody tr:odd td').addClass("odd");

$('.flexible_twocols').each(function(){

var longstr = $(this).children('.colwidth').text();
//alert(longstr);
var brokenstr = longstr.split("-");

var firstcol = brokenstr[0]+"%";
var secondcol = brokenstr[1]+"%";
//alert("f:"+firstcol+" s:"+secondcol);
$(this).children().children().children().children('.flexible_twocols_left').attr("width",firstcol);
$(this).children().children().children().children('.flexible_twocols_right').attr("width",secondcol);

});


});