//redirect
function redirect(url, timeout) {
    setTimeout(function(){
        window.location=url;
    },timeout*1000);
};
//paging
jQuery(document).ready(function(){
    var pw = 0;
    jQuery('.page-nav ul li').each(function(){
        pw += jQuery(this).width();
        mr = jQuery(this).css('margin-right');
        mr = Number(mr.substr(0,mr.length-2));
        pw += mr;
    });
    jQuery('.page-nav').width((pw)+'px');
});
