var reducedWidth = false;
var midwayWidth = false;
function updateStylesOnWidth() {
	var width = $(window).width();
if ( width <= 1170 ) {
if ( !reducedWidth ) {
reducedWidth = true;
 $("table.tms-data-table tr.navigation table thead td").css("padding", "0.3em 0");
$(".ui-button-text-only .ui-button-text").css("padding", "0.4em");
$(".navigator").css("padding","0");
$(".navigatorLabel").css("padding","0");
$(".table-control select").css("width","10em");
}
}
else
if ( width <= 1280 ) {
if ( !midwayWidth ) {
midwayWidth = true;
$(".table-control select").css("width","10em");
}
}
else
{
if ( reducedWidth || midwayWidth ) {
reducedWidth = false;
midwayWidth = false;
 $("table.tms-data-table tr.navigation table thead td").css("padding", "0.3em 0.5em");
$(".ui-button-text-only .ui-button-text").css("padding", "0.4em 1em");
$(".navigator").css("padding","0 8pt");
$(".navigatorLabel").css("padding","0 4pt");
$(".table-control select").css("width: auto");
}
}
}
$(function() {
updateStylesOnWidth();
$(window).resize(function() {
updateStylesOnWidth();
});
});
