resize
// RELOAD ON RESIZE
// reload page on resize to sort out css changes to slider nav
$(window).resize(function() {
if($(window).width() > 750){ // to keep jeremy's phone from wigging ;)
location.href = location.href;
}
});