// js to fix style related issues ( usually ie8 >:(

$(document).ready(function(){
    $('th,td').removeAttr("style");
    $("table tr:even").addClass("even");
    $("table tr:odd").addClass("odd");
    $("#views_slideshow_singleframe_main_view_installations-default").css("width","100px");
});
